home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / editors / mntemacs.zoo / src / sysdep.c < prev    next >
C/C++ Source or Header  |  1992-04-28  |  92KB  |  4,000 lines

  1. /* Interfaces to system-dependent kernel and library entries.
  2.    Copyright (C) 1985, 1986, 1987, 1988, 1990 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /**
  21.  **  (sjk)++ include basepage stuff for dumping.
  22.  **/
  23. #if defined(atarist)
  24. #include <basepage.h>
  25. #include <ioctl.h>
  26. #endif 
  27.  
  28.  
  29. #include <signal.h>
  30. #include <setjmp.h>
  31.  
  32. #include "config.h"
  33. #include "lisp.h"
  34. #undef NULL
  35.  
  36. #define min(x,y) ((x) > (y) ? (y) : (x))
  37.  
  38. /* In this file, open, read and write refer to the system calls,
  39.    not our sugared interfaces  sys_open, sys_read and sys_write.
  40.    Contrariwise, for systems where we use the system calls directly,
  41.    define sys_read, etc. here as aliases for them.  */
  42. #ifndef read
  43. #define sys_read read
  44. #define sys_write write
  45. #endif /* `read' is not a macro */
  46.  
  47. #undef read
  48. #undef write
  49.  
  50. #ifndef close
  51. #define sys_close close
  52. #else 
  53. #undef close
  54. #endif
  55.  
  56. #ifndef open
  57. #define sys_open open
  58. #else /* `open' is a macro */
  59. #undef open
  60. #endif /* `open' is a macro */
  61.  
  62. #include <stdio.h>
  63. #include <sys/types.h>
  64. #include <sys/stat.h>
  65. #include <errno.h>
  66.  
  67. extern int errno;
  68. #ifndef VMS
  69. extern char *sys_errlist[];
  70. #endif
  71.  
  72. #ifdef VMS
  73. #include <rms.h>
  74. #include <ttdef.h>
  75. #include <tt2def.h>
  76. #include <iodef.h>
  77. #include <ssdef.h>
  78. #include <descrip.h>
  79. #include <ctype.h>
  80. #include <file.h>
  81. #ifndef RAB$C_BID
  82. #include <rab.h>
  83. #endif
  84. #define    MAXIOSIZE ( 32 * PAGESIZE )    /* Don't I/O more than 32 blocks at a time */
  85. #endif /* VMS */
  86.  
  87. #ifndef BSD4_1
  88. #ifdef BSD /* this is done this way to avoid defined(BSD) || defined (USG)
  89.           because the vms compiler doesn't grok `defined' */
  90. #include <fcntl.h>
  91. #endif
  92. #ifdef USG
  93. #include <fcntl.h>
  94. #endif
  95.  
  96. /**
  97.  **  (sjk)++ we need the flags...
  98.  **/
  99. #if defined(atarist) 
  100. #include <fcntl.h>
  101. #endif 
  102.  
  103. #endif /* not 4.1 bsd */
  104.  
  105. #ifdef BSD
  106. #include <sys/ioctl.h>
  107. #ifdef BSD4_1
  108. #include <wait.h>
  109. #else /* not 4.1 */
  110. #include <sys/wait.h>
  111. #endif /* not 4.1 */
  112. #endif /* BSD */
  113.  
  114. #ifdef STRIDE
  115. #include <sys/ioctl.h>
  116. #endif 
  117.  
  118. #ifdef mips
  119. #include <sys/ioctl.h>
  120. #endif 
  121.  
  122. #ifdef AIX
  123. /* Get files for keyboard remapping */
  124. #define HFNKEYS 2
  125. #include <sys/hft.h>
  126. #include <sys/devinfo.h>
  127. #endif
  128.  
  129. /* Get rid of LLITOUT in 4.1, since it is said to stimulate kernel bugs.  */
  130. #ifdef BSD4_1
  131. #undef LLITOUT
  132. #define LLITOUT 0
  133. #endif /* 4.1 */
  134.  
  135. #ifdef HAVE_TERMIO
  136. #ifdef IBMR2AIX
  137. #include <termio.h>
  138. #include <termios.h>
  139. #ifdef TIOCGETP
  140. #undef TIOCGETP
  141. #endif
  142. #define TIOCGETP TCGETS
  143. #undef TIOCSETN
  144. #define TIOCSETN TCSETSW
  145. #undef TIOCSETP
  146. #define TIOCSETP TCSETSF
  147. #undef TCSETAW
  148. #define TCSETAW TCSETS
  149. #else
  150. #include <termio.h>
  151. #undef TIOCGETP
  152. #define TIOCGETP TCGETA
  153. #undef TIOCSETN
  154. #define TIOCSETN TCSETAW
  155. #undef TIOCSETP
  156. #define TIOCSETP TCSETAF
  157. #endif
  158.  
  159. #ifndef IBMR2AIX
  160. #define TERMINAL struct termio
  161. #else
  162. #define TERMINAL struct termios
  163. #endif
  164.  
  165. #define OSPEED(str) (str.c_cflag & CBAUD)
  166. #define SETOSPEED(str,new) (str.c_cflag = (str.c_cflag & ~CBAUD) | (new))
  167. #define TABS_OK(str) ((str.c_oflag & TABDLY) != TAB3)
  168. #endif /* HAVE_TERMIO */
  169.  
  170. #ifdef XENIX
  171. #undef TIOCGETC  /* Avoid confusing some conditionals that test this.  */
  172. #endif
  173.  
  174. #ifdef BROKEN_TIOCGETC
  175. #undef TIOCGETC
  176. #endif
  177.  
  178. #ifndef HAVE_TERMIO
  179. #ifndef VMS
  180. #include <sgtty.h>
  181. #define TERMINAL struct sgttyb
  182. #define OSPEED(str) str.sg_ospeed
  183. #define SETOSPEED(str,new) (str.sg_ospeed = (new))
  184. #define TABS_OK(str) ((str.sg_flags & XTABS) != XTABS)
  185. #undef TCSETAW
  186. #define TCSETAW TIOCSETN
  187. #endif /* not VMS */
  188. #endif /* not HAVE_TERMIO */
  189.  
  190. #ifdef USG
  191. #include <sys/utsname.h>
  192. #include <memory.h>
  193. #include <string.h>
  194. #ifdef TIOCGWINSZ
  195. #ifndef IRIS_4D
  196. #ifndef mips
  197. #ifndef aix386
  198. #ifndef NO_SIOCTL_H
  199. /* Some USG systems with TIOCGWINSZ need this file; some don't have it.
  200.    We don't know how to distinguish them.
  201.    If this #include gets an error, just delete it.  */
  202. #include <sys/sioctl.h>
  203. #endif
  204. #ifdef NEED_PTEM_H
  205. #include <sys/stream.h>
  206. #include <sys/ptem.h>
  207. #endif
  208. #endif /* not aix386 */
  209. #endif /* not mips */
  210. #endif /* not IRIS_4D */
  211. #endif /* TIOCGWINSZ */
  212. #ifdef HAVE_TIMEVAL
  213. #ifdef HPUX
  214. #include <time.h>
  215. #else
  216. #include <sys/time.h>
  217. #endif
  218. #endif /* HAVE_TIMEVAL */
  219. #endif /* USG */
  220.  
  221. #ifdef VMS
  222. #include "window.h"
  223. #endif
  224.   
  225. #ifdef NEED_BSDTTY
  226. #include <sys/bsdtty.h>
  227. #endif 
  228.  
  229. #if defined (HPUX) && defined (HAVE_PTYS)
  230. #include <sys/ptyio.h>
  231. #endif
  232.   
  233. #ifdef AIX
  234. #include <sys/pty.h>
  235. #include <unistd.h>
  236. #endif /* AIX */
  237.  
  238. #ifdef SYSV_PTYS
  239. #include <sys/tty.h>
  240. #include <sys/pty.h>
  241. #endif
  242.  
  243. #ifdef BROKEN_FIONREAD
  244. #undef FIONREAD
  245. #endif
  246.  
  247. extern int quit_char;
  248.  
  249. #include "termhooks.h"
  250. #include "termchar.h"
  251. #include "termopts.h"
  252. #include "dispextern.h"
  253.  
  254. #ifdef NONSYSTEM_DIR_LIBRARY
  255. #include "ndir.h"
  256. #endif /* NONSYSTEM_DIR_LIBRARY */
  257.  
  258. #ifndef sigmask
  259. #define sigmask(no) (1L << ((no) - 1))
  260. #endif
  261.  
  262. /* Define SIGCHLD as an alias for SIGCLD.  There are many conditionals
  263.    testing SIGCHLD.  */
  264.  
  265. #ifndef VMS
  266. #ifdef SIGCLD
  267. #ifndef SIGCHLD
  268. #define SIGCHLD SIGCLD
  269. #endif /* not SIGCHLD */
  270. #endif /* SIGCLD */
  271. #endif /* not VMS */
  272.  
  273. static int baud_convert[] =
  274. #ifdef BAUD_CONVERT
  275.   BAUD_CONVERT;
  276. #else
  277.   {
  278.     0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
  279.     1800, 2400, 4800, 9600, 19200, 38400
  280.   };
  281. #endif
  282.  
  283. extern short ospeed;
  284.  
  285. #ifdef VMS
  286. static struct iosb
  287. {
  288.   short status;
  289.   short offset;
  290.   short termlen;
  291.   short term;
  292. } input_iosb;
  293.  
  294. int kbd_input_ast ();
  295.  
  296. int waiting_for_ast;
  297. int stop_input;
  298. int input_ef = 0;
  299. int timer_ef = 0;
  300. int process_ef = 0;
  301. int input_eflist;
  302. int timer_eflist;
  303.  
  304. static int input_chan;
  305. static $DESCRIPTOR (input_dsc, "TT");
  306. static int terminator_mask[2] = { 0, 0 };
  307.  
  308. static struct sensemode {
  309.   short status;
  310.   unsigned char xmit_baud;
  311.   unsigned char rcv_baud;
  312.   unsigned char crfill;
  313.   unsigned char lffill;
  314.   unsigned char parity;
  315.   unsigned char unused;
  316.   char class;
  317.   char type;
  318.   short scr_wid;
  319.   unsigned long tt_char : 24, scr_len : 8;
  320.   unsigned long tt2_char;
  321. } sensemode_iosb;
  322. #define TERMINAL struct sensemode
  323. #define OSPEED(str) (str.xmit_baud)
  324. #define TABS_OK(str) ((str.tt_char & TT$M_MECHTAB) != 0)
  325. #endif /* VMS */
  326.  
  327. discard_tty_input ()
  328. {
  329.   TERMINAL buf;
  330.  
  331.   if (noninteractive)
  332.     return;
  333.  
  334. #ifdef VMS
  335.   end_kbd_input ();
  336.   SYS$QIOW (0, input_chan, IO$_READVBLK|IO$M_PURGE, input_iosb, 0, 0,
  337.         &buf, 0, 0, terminator_mask, 0, 0);
  338.   queue_kbd_input ();
  339. #else /* not VMS */
  340.   ioctl (0, TIOCGETP, &buf);
  341.   ioctl (0, TIOCSETP, &buf);
  342. #endif /* not VMS */
  343. }
  344.  
  345. #ifdef SIGTSTP
  346.  
  347. stuff_char (c)
  348.      char c;
  349. {
  350. /* Should perhaps error if in batch mode */
  351. #ifdef TIOCSTI
  352.   ioctl (0, TIOCSTI, &c);
  353. #else /* no TIOCSTI */
  354.   error ("Cannot stuff terminal input characters in this version of Unix.");
  355. #endif /* no TIOCSTI */
  356. }
  357.  
  358. #endif /* SIGTSTP */
  359.  
  360. init_baud_rate ()
  361. {
  362.   TERMINAL sg;
  363.  
  364.   if (noninteractive)
  365.     ospeed = 0;
  366.   else
  367.     {
  368. #ifdef VMS
  369.       SYS$QIOW (0, input_chan, IO$_SENSEMODE, &sg, 0, 0,
  370.         &sg.class, 12, 0, 0, 0, 0 );
  371. #else
  372. #ifdef atarist            /* erlingh */
  373. #ifndef B9600
  374. #define B9600 0
  375. #endif
  376. #endif
  377.       SETOSPEED (sg, B9600);
  378.       ioctl (0, TIOCGETP, &sg);
  379. #endif /* not VMS */
  380.       ospeed = OSPEED (sg);
  381.     }
  382.   
  383.   baud_rate = (ospeed < sizeof baud_convert / sizeof baud_convert[0]
  384.            ? baud_convert[ospeed] : 9600);
  385.   if (baud_rate == 0)
  386.     baud_rate = 1200;
  387. }
  388.  
  389. /*ARGSUSED*/
  390. set_exclusive_use (fd)
  391.      int fd;
  392. {
  393. #ifdef FIOCLEX
  394.   ioctl (fd, FIOCLEX, 0);
  395. #endif
  396.   /* Ok to do nothing if this feature does not exist */
  397. }
  398.  
  399. #ifndef subprocesses
  400.  
  401. wait_without_blocking ()
  402. {
  403. #ifdef BSD
  404.   wait3 (0, WNOHANG | WUNTRACED, 0);
  405. #else
  406.   croak ("wait_without_blocking");
  407. #endif
  408. }
  409.  
  410. #endif /* not subprocesses */
  411.  
  412. int wait_debugging;   /* Set nonzero to make following function work under dbx
  413.                  (at least for bsd).  */
  414.  
  415. /* Wait for subprocess with process id `pid' to terminate and
  416.    make sure it will get eliminated (not remain forever as a zombie) */
  417.  
  418. wait_for_termination (pid)
  419.      int pid;
  420. {
  421.   while (1)
  422.     {
  423. #ifdef subprocesses
  424. #if defined(BSD) || (defined(HPUX) && !defined(HPUX_5))
  425.       /* Note that kill returns -1 even if the process is just a zombie now.
  426.      But inevitably a SIGCHLD interrupt should be generated
  427.      and child_sig will do wait3 and make the process go away. */
  428.       /* There is some indication that there is a bug involved with
  429.      termination of subprocesses, perhaps involving a kernel bug too,
  430.      but no idea what it is.  Just as a hunch we signal SIGCHLD to see
  431.      if that causes the problem to go away or get worse.  */
  432. #ifdef BSD4_1
  433.       extern int synch_process_pid;
  434.       sighold (SIGCHLD);
  435.       if (synch_process_pid == 0)
  436.     {
  437.           sigrelse (SIGCHLD);
  438.       break;
  439.     }
  440.       if (wait_debugging)
  441.     sleep (1);
  442.       else
  443.     sigpause (SIGCHLD);
  444. #else /* not BSD4_1 */
  445.       sigsetmask (1 << (SIGCHLD - 1));
  446.       if (0 > kill (pid, 0))
  447.         {
  448.       sigsetmask (0);
  449.       kill (getpid (), SIGCHLD);
  450.       break;
  451.     }
  452.       if (wait_debugging)
  453.     sleep (1);
  454.       else
  455.     sigpause (0);
  456. #endif /* not BSD4_1 */
  457. #else /* not BSD, and not HPUX version >= 6 */
  458. #ifdef UNIPLUS
  459.       if (0 > kill (pid, 0))
  460.     break;
  461.       wait (0);
  462. #else /* neither BSD nor UNIPLUS: random sysV */
  463.       if (0 > kill (pid, 0))
  464.     break;
  465.       pause ();
  466. #endif /* not UNIPLUS */
  467. #endif /* not BSD, and not HPUX version >= 6 */
  468. #else /* not subprocesses */
  469. #ifndef BSD4_1
  470.  
  471.       if (0 > kill (pid, 0))
  472.     break;
  473.       wait (0);
  474. #else /* BSD4_1 */
  475.       int status;
  476.       status = wait (0);
  477.       if (status == pid || status == -1)
  478.     break;
  479. #endif /* BSD4_1 */
  480. #endif /* not subprocesses */
  481.     }
  482. }
  483.  
  484. #ifdef subprocesses
  485.  
  486. /*
  487.  *    flush any pending output
  488.  *      (may flush input as well; it does not matter the way we use it)
  489.  */
  490.  
  491. flush_pending_output (channel)
  492.      int channel;
  493. {
  494. #ifdef TCFLSH
  495.   ioctl (channel, TCFLSH, 1);
  496. #else
  497. #ifdef TIOCFLUSH
  498.   int zero = 0;
  499.   /* 3rd arg should be ignored
  500.      but some 4.2 kernels actually want the address of an int
  501.      and nonzero means something different.  */
  502.   ioctl (channel, TIOCFLUSH, &zero);
  503. #endif
  504. #endif
  505. }
  506.  
  507. /*  Set up the terminal at the other end of a pseudo-terminal that
  508.     we will be controlling an inferior through.
  509.     It should not echo or do line-editing, since that is done
  510.     in Emacs.  No padding needed for insertion into an Emacs buffer.  */
  511.  
  512. child_setup_tty (out)
  513.      int out;
  514. {
  515.   TERMINAL s;
  516.  
  517.   ioctl (out, TIOCGETP, &s);
  518. #ifdef HAVE_TERMIO
  519.   s.c_oflag |= OPOST;        /* Enable output postprocessing */
  520.   s.c_oflag &= ~ONLCR;        /* Disable map of NL to CR-NL on output */
  521.   s.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);    /* No output delays */
  522.   s.c_lflag &= ~ECHO;        /* Disable echo */
  523.   s.c_lflag |= ISIG;        /* Enable signals */
  524.   s.c_iflag &= ~IUCLC;        /* Disable map of upper case to lower on input */
  525.   s.c_oflag &= ~OLCUC;        /* Disable map of lower case to upper on output */
  526. /* said to be unnecesary
  527.   s.c_cc[VMIN] = 1;        /* minimum number of characters to accept
  528.   s.c_cc[VTIME] = 0;        /* wait forever for at least 1 character
  529. */
  530.   s.c_lflag |= ICANON;        /* Enable erase/kill and eof processing */
  531.   s.c_cc[VEOF] = 04;        /* insure that EOF is Control-D */
  532.   s.c_cc[VERASE] = 0377;    /* disable erase processing */
  533.   s.c_cc[VKILL] = 0377;        /* disable kill processing */
  534. #ifdef HPUX
  535.   s.c_cflag = (s.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
  536. #endif HPUX
  537.  
  538. #ifdef AIX
  539. /* AIX enhanced edit loses NULs, so disable it */
  540. #ifndef IBMR2AIX
  541.   s.c_line = 0;
  542.   s.c_iflag &= ~ASCEDIT;
  543. #endif
  544.   /* Also, PTY overloads NUL and BREAK.
  545.      don't ignore break, but don't signal either, so it looks like NUL.  */
  546.   s.c_iflag &= ~IGNBRK;
  547.   s.c_iflag &= ~BRKINT;
  548. /* QUIT and INTR work better as signals, so disable character forms */
  549.   s.c_cc[VQUIT] = 0377;
  550.   s.c_cc[VINTR] = 0377;
  551.   s.c_cc[VEOL] = 0377;
  552.   s.c_lflag &= ~ISIG;
  553.   s.c_cflag = (s.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
  554. #endif /* AIX */
  555.  
  556. #else /* not HAVE_TERMIO */
  557.   s.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE | CBREAK | TANDEM);
  558. #endif /* not HAVE_TERMIO */
  559.  
  560.   ioctl (out, TIOCSETN, &s);
  561.  
  562. #ifdef BSD4_1
  563.   if (interrupt_input)
  564.     reset_sigio ();
  565. #endif /* BSD4_1 */
  566. #ifdef RTU
  567.   {
  568.     int zero = 0;
  569.     ioctl (out, FIOASYNC, &zero);
  570.   }
  571. #endif /* RTU */
  572. }
  573.  
  574. #endif /* subprocesses */
  575.  
  576. /*ARGSUSED*/
  577. setpgrp_of_tty (pid)
  578.      int pid;
  579. {
  580. #ifdef IBMR2AIX
  581.   tcsetpgrp ( 0, pid);
  582. #else
  583. #ifdef TIOCSPGRP
  584.   ioctl (0, TIOCSPGRP, &pid);
  585. #else
  586.   /* Just ignore this for now and hope for the best */
  587. #endif
  588. #endif
  589. }
  590.  
  591. /* Record a signal code and the handler for it.  */
  592. struct save_signal
  593. {
  594.   int code;
  595.   int (*handler) ();
  596. };
  597.  
  598. /* Suspend the Emacs process; give terminal to its superior.  */
  599.  
  600. sys_suspend ()
  601. {
  602. #ifdef VMS
  603.   unsigned long parent_id;
  604.  
  605.   parent_id = getppid ();
  606.   if (parent_id && parent_id != 0xffffffff)
  607.     {
  608.       int oldsig = signal (SIGINT, SIG_IGN);
  609.       int status = LIB$ATTACH (&parent_id) & 1;
  610.       signal (SIGINT, oldsig);
  611.       return status;
  612.     }
  613.   return -1;
  614. #else
  615. #ifdef SIGTSTP
  616. #if defined(BSD) || defined(__MINT__)
  617.   killpg (getpgrp (0), SIGTSTP);
  618. #else
  619.   kill (-getpgrp (0), SIGTSTP);
  620. #endif
  621.  
  622. #else
  623. #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
  624.   ptrace (0, 0, 0, 0);        /* set for ptrace - caught by csh */
  625.   kill (getpid (), SIGQUIT);
  626.  
  627. #else
  628.  
  629. /* On a system where suspending is not implemented,
  630.    instead fork a subshell and let it talk directly to the terminal
  631.    while we wait.  */
  632.  
  633.   int pid = fork ();
  634.  
  635.   struct save_signal saved_handlers[5];
  636.  
  637.   saved_handlers[0].code = SIGINT;
  638.   saved_handlers[1].code = SIGQUIT;
  639.   saved_handlers[2].code = SIGTERM;
  640. #ifdef SIGIO
  641.   saved_handlers[3].code = SIGIO;
  642.   saved_handlers[4].code = 0;
  643. #else
  644.   saved_handlers[3].code = 0;
  645. #endif
  646.  
  647.   if (pid == -1)
  648.     error ("Can't spawn subshell");
  649.   if (pid == 0)
  650.     {
  651.       char *sh;
  652.       sh = (char *) egetenv ("SHELL");
  653.  
  654.       if (sh == 0)
  655.     sh = "sh";
  656.  
  657.       /* Use our buffer's default directory for the subshell.  */
  658.       {
  659.     Lisp_Object dir;
  660.     unsigned char *str;
  661.     int len;
  662.  
  663.     /* mentioning current_buffer->buffer would mean including buffer.h,
  664.        which somehow wedges the hp compiler.  So instead... */
  665.  
  666.     dir = intern ("default-directory");
  667.     /* Can't use NULL */
  668.     if (XFASTINT (Fboundp (dir)) == XFASTINT (Qnil))
  669.       goto xyzzy;
  670.     dir = Fsymbol_value (dir);
  671.     if (XTYPE (dir) != Lisp_String)
  672.       goto xyzzy;
  673.  
  674.     str = (unsigned char *) alloca (XSTRING (dir)->size + 2);
  675.     len = XSTRING (dir)->size;
  676.     bcopy (XSTRING (dir)->data, str, len);
  677.     if (str[len - 1] != '/') str[len++] = '/';
  678.     str[len] = 0;
  679.     chdir (str);
  680.       }
  681.     xyzzy:
  682. #ifdef subprocesses
  683.       close_process_descs ();    /* Close Emacs's pipes/ptys */
  684. #endif
  685.       execlp (sh, sh, 0);
  686.       write (1, "Can't execute subshell", 22);
  687.       _exit (1);
  688.     }
  689.   save_signal_handlers (&saved_handlers);
  690.   wait_for_termination (pid);
  691.   restore_signal_handlers (&saved_handlers);
  692. #endif /* no USG_JOBCTRL */
  693. #endif /* no SIGTSTP */
  694. #endif /* not VMS */
  695.  
  696. }
  697.  
  698. save_signal_handlers (saved_handlers)
  699.      struct save_signal *saved_handlers;
  700. {
  701.   while (saved_handlers->code)
  702.     {
  703.       saved_handlers->handler
  704.     = (int (*) ()) signal (saved_handlers->code, SIG_IGN);
  705.       saved_handlers++;
  706.     }
  707. }
  708.  
  709. restore_signal_handlers (saved_handlers)
  710.      struct save_signal *saved_handlers;
  711. {
  712.   while (saved_handlers->code)
  713.     {
  714. /**
  715.  **  (sjk)++ a simple typecast
  716.  **/
  717. #if defined(atarist)
  718.       signal (saved_handlers->code, (__Sigfunc)saved_handlers->handler);
  719. #else
  720.       signal (saved_handlers->code, saved_handlers->handler);
  721. #endif
  722.       saved_handlers++;
  723.     }
  724. }
  725.  
  726. /**
  727.  **  (sjk)++ a SIGIO will cause a system croak().
  728.  **/
  729. #if !defined(atarist)
  730.  
  731. #ifdef F_SETFL
  732.  
  733. int old_fcntl_flags;
  734.  
  735. init_sigio ()
  736. {
  737. #ifdef FASYNC
  738.   old_fcntl_flags = fcntl (0, F_GETFL, 0) & ~FASYNC;
  739. #endif
  740.   request_sigio ();
  741. }
  742.  
  743. reset_sigio ()
  744. {
  745.   unrequest_sigio ();
  746. }
  747.  
  748. #ifdef FASYNC        /* F_SETFL does not imply existance of FASYNC */
  749.  
  750. request_sigio ()
  751. {
  752. #ifdef SIGWINCH
  753.   int omask = sigblock (0);
  754.   sigsetmask (omask & ~sigmask (SIGWINCH));
  755. #endif
  756.   fcntl (0, F_SETFL, old_fcntl_flags | FASYNC);
  757.  
  758.   interrupts_deferred = 0;
  759. }
  760.  
  761. unrequest_sigio ()
  762. {
  763. #ifdef SIGWINCH
  764.   sigblock (sigmask (SIGWINCH));
  765. #endif
  766.   fcntl (0, F_SETFL, old_fcntl_flags);
  767.   interrupts_deferred = 1;
  768. }
  769.  
  770. #else /* no FASYNC */
  771. #ifdef STRIDE        /* Stride doesn't have FASYNC - use FIOASYNC */
  772.  
  773. request_sigio ()
  774. {
  775.   int on = 1;
  776.   ioctl (0, FIOASYNC, &on);
  777.   interrupts_deferred = 0;
  778. }
  779.  
  780. unrequest_sigio ()
  781. {
  782.   int off = 0;
  783.  
  784.   ioctl (0, FIOASYNC, &off);
  785.   interrupts_deferred = 1;
  786. }
  787.  
  788. #else /* not FASYNC, not STRIDE */
  789.  
  790. request_sigio ()
  791. {
  792.   croak ("request_sigio");
  793. }
  794.  
  795. unrequest_sigio ()
  796. {
  797.   croak ("unrequest_sigio");
  798. }
  799.  
  800. #endif /* STRIDE */
  801. #endif /* FASYNC */
  802. #endif /* F_SETFL */
  803. #endif /* !atarist */
  804. /**
  805.  **  (sjk)++ see previous ST comment.
  806.  **/
  807. #ifdef atarist
  808.  
  809. unrequest_sigio ()
  810. {
  811.   croak ("unrequest_sigio");
  812. }
  813.  
  814. croak (badfunc)
  815.      char *badfunc;
  816. {
  817.   printf ("%s not yet implemented\r\n", badfunc);
  818. }
  819. #endif  /*  atarist  */
  820.  
  821.  
  822. TERMINAL old_gtty;        /* The initial tty mode bits */
  823.  
  824. int term_initted;        /* 1 if outer tty status has been recorded */
  825.  
  826. #ifdef F_SETOWN
  827. int old_fcntl_owner;
  828. #endif /* F_SETOWN */
  829.  
  830. #ifdef TIOCGLTC
  831. struct ltchars old_ltchars;
  832. #endif /* TIOCGLTC */
  833.  
  834. #ifdef TIOCGETC
  835. struct tchars old_tchars;
  836. int old_lmode;
  837.  
  838. int lmode;            /* Current lmode value. */
  839.                 /* Needed as global for 4.1 */
  840. #endif /* TIOCGETC */
  841.  
  842. /* This may also be defined in stdio,
  843.    but if so, this does no harm,
  844.    and using the same name avoids wasting the other one's space.  */
  845.  
  846. #ifdef USG
  847. unsigned char _sobuf[BUFSIZ+8];
  848. #else
  849. char _sobuf[BUFSIZ];
  850. #endif
  851.  
  852. #ifdef TIOCGLTC
  853. static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
  854. #endif
  855. #ifdef TIOCGETC
  856.   static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
  857. #endif 
  858.  
  859. init_sys_modes ()
  860. {
  861.   TERMINAL tty;
  862. #ifdef TIOCGETC
  863.   struct tchars tchars;
  864. #endif
  865. #ifdef VMS
  866. #if 0
  867.   static int oob_chars[2] = {0, 1 << 7}; /* catch C-g's */
  868.   extern int (*interrupt_signal) ();
  869. #endif
  870. #endif
  871.  
  872.   if (noninteractive)
  873.     return;
  874.  
  875. #ifdef VMS
  876.   if (!input_ef)
  877.     LIB$GET_EF (&input_ef);
  878.   SYS$CLREF (input_ef);
  879.   waiting_for_ast = 0;
  880.   if (!timer_ef)
  881.     LIB$GET_EF (&timer_ef);
  882.   SYS$CLREF (timer_ef);
  883.   if (!process_ef)
  884.     {
  885.       LIB$GET_EF (&process_ef);
  886.       SYS$CLREF (process_ef);
  887.     }
  888.   if (input_ef / 32 != process_ef / 32)
  889.     croak ("Input and process event flags in different clusters.");
  890.   if (input_ef / 32 != timer_ef / 32)
  891.     croak ("Input and process event flags in different clusters.");
  892.   input_eflist = ((unsigned) 1 << (input_ef % 32)) |
  893.     ((unsigned) 1 << (process_ef % 32));
  894.   timer_eflist = ((unsigned) 1 << (input_ef % 32)) |
  895.     ((unsigned) 1 << (timer_ef % 32));
  896.   SYS$QIOW (0, input_chan, IO$_SENSEMODE, &old_gtty, 0, 0,
  897.         &old_gtty.class, 12, 0, 0, 0, 0);
  898. #ifndef VMS4_4
  899.   sys_access_reinit ();
  900. #endif
  901. #else /* not VMS */
  902.   ioctl (0, TIOCGETP, &old_gtty);
  903. #endif /* not VMS */
  904.   if (!read_socket_hook)
  905.     {
  906.       tty = old_gtty;
  907.  
  908. #ifdef HAVE_TERMIO
  909.       tty.c_iflag |= (IGNBRK);    /* Ignore break condition */
  910.       tty.c_iflag &= ~ICRNL;    /* Disable map of CR to NL on input */
  911. #ifdef ISTRIP
  912.       tty.c_iflag &= ~ISTRIP;    /* don't strip 8th bit on input */
  913. #endif
  914.       tty.c_lflag &= ~ECHO;    /* Disable echo */
  915.       tty.c_lflag &= ~ICANON;    /* Disable erase/kill processing */
  916.       tty.c_lflag |= ISIG;    /* Enable signals */
  917.       if (flow_control)
  918.     {
  919.       tty.c_iflag |= IXON;    /* Enable start/stop output control */
  920. #ifdef IXANY
  921.       tty.c_iflag &= ~IXANY;
  922. #endif /* IXANY */
  923.     }
  924.       else
  925.     tty.c_iflag &= ~IXON;    /* Disable start/stop output control */
  926.       tty.c_oflag &= ~ONLCR;    /* Disable map of NL to CR-NL on output */
  927.       tty.c_oflag &= ~TAB3;    /* Disable tab expansion */
  928. #ifdef CS8
  929.       tty.c_cflag |= CS8;    /* allow 8th bit on input */
  930.       tty.c_cflag &= ~PARENB;    /* Don't check parity */
  931. #endif
  932.       tty.c_cc[VINTR] = quit_char;    /* ^G gives SIGINT */
  933.       /* Set up C-g (usually) for both SIGQUIT and SIGINT.
  934.      We don't know which we will get, but we handle both alike
  935.      so which one it really gives us does not matter.  */
  936.       tty.c_cc[VQUIT] = quit_char;
  937.       tty.c_cc[VMIN] = 1;    /* Input should wait for at least 1 char */
  938.       tty.c_cc[VTIME] = 0;    /* no matter how long that takes.  */
  939. #ifdef VSWTCH
  940.       tty.c_cc[VSWTCH] = CDEL;    /* Turn off shell layering use of C-z */
  941. #endif /* VSWTCH */
  942. #ifdef mips  /* The following code looks like the right thing in general,
  943.         but it is said to cause a crash on USG V.4.
  944.         Let's play safe by turning it on only for the MIPS.  */
  945. #ifdef VSUSP
  946.       tty.c_cc[VSUSP] = CDEL;    /* Turn off mips handling of C-z.  */
  947. #endif /* VSUSP */
  948. #ifdef V_DSUSP
  949.       tty.c_cc[V_DSUSP] = CDEL;    /* Turn off mips handling of C-y.  */
  950. #endif /* V_DSUSP */
  951. #endif /* mips */
  952.  
  953. #ifdef AIX
  954. #ifndef IBMR2AIX
  955.       /* AIX enhanced edit loses NULs, so disable it */
  956.       tty.c_line = 0;
  957.       tty.c_iflag &= ~ASCEDIT;
  958. #else
  959.       tty.c_cc[VSTRT] = 255;
  960.       tty.c_cc[VSTOP] = 255;
  961.       tty.c_cc[VSUSP] = 255;
  962.       tty.c_cc[VDSUSP] = 255;
  963. #endif /* IBMR2AIX */
  964.       /* Also, PTY overloads NUL and BREAK.
  965.      don't ignore break, but don't signal either, so it looks like NUL.
  966.      This really serves a purpose only if running in an XTERM window
  967.      or via TELNET or the like, but does no harm elsewhere.  */
  968.       tty.c_iflag &= ~IGNBRK;
  969.       tty.c_iflag &= ~BRKINT;
  970. #endif /* AIX */
  971.  
  972. #else /* if not HAVE_TERMIO */
  973. #ifdef VMS
  974.       tty.tt_char |= TT$M_NOECHO | TT$M_EIGHTBIT;
  975.       if (flow_control)
  976.     tty.tt_char |= TT$M_TTSYNC;
  977.       else
  978.     tty.tt_char &= ~TT$M_TTSYNC;
  979.       tty.tt2_char |= TT2$M_PASTHRU | TT2$M_XON;
  980. #else /* not VMS (BSD, that is) */
  981.       tty.sg_flags &= ~(ECHO | CRMOD | XTABS);
  982.       tty.sg_flags |= ANYP;
  983.       tty.sg_flags |= interrupt_input ? RAW : CBREAK;
  984. #endif /* not VMS (BSD, that is) */
  985. #endif /* not HAVE_TERMIO */
  986.  
  987. #ifdef VMS
  988.       SYS$QIOW (0, input_chan, IO$_SETMODE, &input_iosb, 0, 0,
  989.         &tty.class, 12, 0, 0, 0, 0);
  990. #else
  991.       ioctl (0, TIOCSETN, &tty);
  992. #endif /* not VMS */
  993.  
  994.       /* This code added to insure that, if flow-control is not to be used,
  995.      we have an unlocked screen at the start. */
  996. #ifdef TCXONC
  997.       if (!flow_control) ioctl (0, TCXONC, 1);
  998. #endif
  999. #ifdef TIOCSTART
  1000.       if (!flow_control) ioctl (0, TIOCSTART, 0);
  1001. #endif
  1002.  
  1003. #ifdef AIX
  1004.       hft_init ();
  1005. #ifdef IBMR2AIX
  1006.   {
  1007.     /* IBM's HFT device usually thinks a ^J should be LF/CR.  We need it
  1008.        to be only LF.  This is the way that is done. */
  1009.     struct termio tty;
  1010.  
  1011.     if (ioctl (1, HFTGETID, &tty) != -1)
  1012.       write (1, "\033[20l", 5);
  1013.   }
  1014. #endif
  1015. #endif
  1016.  
  1017. #ifdef F_SETFL
  1018. #ifdef F_GETOWN        /* F_SETFL does not imply existance of F_GETOWN */
  1019.       if (interrupt_input)
  1020.     {
  1021.       old_fcntl_owner = fcntl (0, F_GETOWN, 0);
  1022.       fcntl (0, F_SETOWN, getpid ());
  1023.       init_sigio ();
  1024.     }
  1025. #endif /* F_GETOWN */
  1026. #endif /* F_SETFL */
  1027.  
  1028.       /* If going to use CBREAK mode, we must request C-g to interrupt
  1029.        and turn off start and stop chars, etc.
  1030.        If not going to use CBREAK mode, do this anyway
  1031.        so as to turn off local flow control for user coming over
  1032.        network on 4.2; in this case, only t_stopc and t_startc really matter.  */
  1033. #ifdef TIOCGLTC
  1034.       ioctl (0, TIOCGLTC, &old_ltchars);
  1035. #endif /* TIOCGLTC */
  1036. #ifndef HAVE_TERMIO
  1037. #ifdef TIOCGETC
  1038.       ioctl (0, TIOCGETC, &old_tchars);
  1039.       ioctl (0, TIOCLGET, &old_lmode);
  1040.  
  1041.       /* Note: if not using CBREAK mode, it makes no difference how we set this */
  1042.       tchars = new_tchars;
  1043.       tchars.t_intrc = quit_char;
  1044.       if (flow_control)
  1045.     {
  1046.       tchars.t_startc = '\021';
  1047.       tchars.t_stopc = '\023';
  1048.     }
  1049. /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits.  */
  1050. #ifndef LPASS8
  1051. #define LPASS8 0
  1052. #endif
  1053.  
  1054. #ifdef BSD4_1
  1055. #define LNOFLSH 0100000
  1056. #endif
  1057. #ifdef atarist
  1058. #ifndef LDECCTQ
  1059. #define LDECCTQ 0
  1060. #endif
  1061. #ifndef LNOFLSH
  1062. #define LNOFLSH 0
  1063. #endif
  1064. #endif /* atarist */
  1065.       lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_lmode;
  1066.  
  1067.       ioctl (0, TIOCSETC, &tchars);
  1068.       ioctl (0, TIOCLSET, &lmode);
  1069.  
  1070. #endif /* TIOCGETC */
  1071. #endif /* not HAVE_TERMIO */
  1072. #ifdef TIOCGLTC
  1073.       ioctl (0, TIOCSLTC, &new_ltchars);
  1074. #endif /* TIOCGLTC */
  1075.  
  1076. #ifdef BSD4_1
  1077.       if (interrupt_input)
  1078.     init_sigio ();
  1079. #endif
  1080. #ifdef VMS
  1081. /*  Appears to do nothing when in PASTHRU mode.
  1082.       SYS$QIOW (0, input_chan, IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
  1083.         interrupt_signal, oob_chars, 0, 0, 0, 0);
  1084. */
  1085.       queue_kbd_input (0);
  1086. #endif /* VMS */
  1087.     }
  1088. #ifdef VMS  /* VMS sometimes has this symbol but lacks setvbuf.  */
  1089. #undef _IOFBF
  1090. #endif
  1091. #ifdef _IOFBF
  1092.   /* This symbol is defined on recent USG systems.
  1093.      Someone says without this call USG won't really buffer the file
  1094.      even with a call to setbuf(). */
  1095.   setvbuf (stdout, _sobuf, _IOFBF, sizeof _sobuf);
  1096. #else
  1097.   setbuf (stdout, _sobuf);
  1098. #endif
  1099.   set_terminal_modes ();
  1100.   if (term_initted && no_redraw_on_reenter)
  1101.     {
  1102.       if (display_completed)
  1103.     direct_output_forward_char (0);
  1104.     }
  1105.   else
  1106.     screen_garbaged = 1;
  1107.   term_initted = 1;
  1108. }
  1109.  
  1110. /* Return nonzero if safe to use tabs in output.
  1111.    At the time this is called, init_sys_modes has not been done yet.  */
  1112.    
  1113. tabs_safe_p ()
  1114. {
  1115.   TERMINAL tty;
  1116.   if (noninteractive)
  1117.     return 1;
  1118. #ifdef VMS
  1119.   SYS$QIOW (0, input_chan, IO$_SENSEMODE, &tty, 0, 0,
  1120.         &tty.class, 12, 0, 0, 0, 0);
  1121. #else
  1122.   ioctl (0, TIOCGETP, &tty);
  1123. #endif /* not VMS */
  1124.   return (TABS_OK(tty));
  1125. }
  1126.  
  1127. /* Get terminal size from system.
  1128.    Store number of lines into *heightp and width into *widthp.
  1129.    If zero or a negative number is stored, the value is not valid.  */
  1130.  
  1131. get_screen_size (widthp, heightp)
  1132.      int *widthp, *heightp;
  1133. {
  1134. /* Define the 4.3 names in terms of the Sun names
  1135.    if the latter exist and the former do not.  */
  1136. #ifdef TIOCGSIZE
  1137. #ifndef TIOCGWINSZ
  1138. #define TIOCGWINSZ TIOCGSIZE
  1139. #define winsize ttysize
  1140. #define ws_row ts_lines
  1141. #define ws_col ts_cols
  1142. #endif
  1143. #endif /* Sun */
  1144.  
  1145. /* Do it using the 4.3 names if possible.  */
  1146. #ifdef TIOCGWINSZ
  1147.   struct winsize size;
  1148.   *widthp = 0;
  1149.   *heightp = 0;
  1150.   if (ioctl (0, TIOCGWINSZ, &size) < 0)
  1151.     return;
  1152.   *widthp = size.ws_col;
  1153.   *heightp = size.ws_row;
  1154. #else /* not TIOCGWNSIZ */
  1155. #ifdef VMS
  1156.   TERMINAL tty;
  1157.   SYS$QIOW (0, input_chan, IO$_SENSEMODE, &tty, 0, 0,
  1158.         &tty.class, 12, 0, 0, 0, 0);
  1159.   *widthp = tty.scr_wid;
  1160.   *heightp = tty.scr_len;
  1161. #else /* system doesn't know size */
  1162.   *widthp = 0;
  1163.   *heightp = 0;
  1164. #endif /* system does not know size */
  1165. #endif /* not TIOCGWINSZ */
  1166. }
  1167.  
  1168. reset_sys_modes ()
  1169. {
  1170.   if (noninteractive)
  1171.     {
  1172.       fflush (stdout);
  1173.       return;
  1174.     }
  1175.   if (!term_initted)
  1176.     return;
  1177.   if (read_socket_hook)
  1178.     return;
  1179.   move_cursor (screen_height - 1, 0);
  1180.   clear_end_of_line (screen_width);
  1181.   /* clear_end_of_line may move the cursor */
  1182.   move_cursor (screen_height - 1, 0);
  1183.   /* Output raw CR so kernel can track the cursor hpos.  */
  1184.   cmputc ('\r');
  1185. #ifdef IBMR2AIX
  1186.   {
  1187.     /* HFT devices normally use ^J as a LF/CR.  We forced it to 
  1188.        do the LF only.  Now, we need to reset it. */
  1189.     struct termio tty;
  1190.  
  1191.     if (ioctl (1, HFTGETID, &tty) != -1)
  1192.       write (1, "\033[20h", 5);
  1193.   }
  1194. #endif
  1195.  
  1196.   reset_terminal_modes ();
  1197.   fflush (stdout);
  1198. #ifdef BSD
  1199. #ifndef BSD4_1
  1200.   /* Avoid possible loss of output when changing terminal modes.  */
  1201.   fsync (fileno (stdout));
  1202. #endif
  1203. #endif
  1204. #ifdef TIOCGLTC
  1205.   ioctl (0, TIOCSLTC, &old_ltchars);
  1206. #endif /* TIOCGLTC */
  1207. #ifndef HAVE_TERMIO
  1208. #ifdef TIOCGETC
  1209.   ioctl (0, TIOCSETC, &old_tchars);
  1210.   ioctl (0, TIOCLSET, &old_lmode);
  1211.  
  1212. #endif /* TIOCGETC */
  1213. #endif /* not HAVE_TERMIO */
  1214. #ifdef F_SETFL
  1215. #ifdef F_SETOWN        /* F_SETFL does not imply existance of F_SETOWN */
  1216.   if (interrupt_input)
  1217.     {
  1218.       reset_sigio ();
  1219.       fcntl (0, F_SETOWN, old_fcntl_owner);
  1220.     }
  1221. #endif /* F_SETOWN */
  1222. #endif /* F_SETFL */
  1223. #ifdef BSD4_1
  1224.   if (interrupt_input)
  1225.     reset_sigio ();
  1226. #endif /* BSD4_1 */
  1227. #ifdef VMS
  1228.   end_kbd_input ();
  1229.   SYS$QIOW (0, input_chan, IO$_SETMODE, &input_iosb, 0, 0,
  1230.         &old_gtty.class, 12, 0, 0, 0, 0);
  1231. #else /* not VMS */
  1232.   while (ioctl (0, TCSETAW, &old_gtty) < 0 && errno == EINTR);
  1233. #endif /* not VMS */
  1234.  
  1235. #ifdef AIX
  1236.   hft_reset ();
  1237. #endif
  1238. }
  1239.  
  1240. #ifdef HAVE_PTYS
  1241.  
  1242. /* Set up the proper status flags for use of a pty.  */
  1243.  
  1244. setup_pty (fd)
  1245.      int fd;
  1246. {
  1247.   /* I'm told that TOICREMOTE does not mean control chars
  1248.      "can't be sent" but rather that they don't have
  1249.      input-editing or signaling effects.
  1250.      That should be good, because we have other ways
  1251.      to do those things in Emacs.
  1252.      However, telnet mode seems not to work on 4.2.
  1253.      So TIOCREMOTE is turned off now. */
  1254.  
  1255.   /* Under hp-ux, if TIOCREMOTE is turned on, some calls
  1256.      will hang.  In particular, the "timeout" feature (which
  1257.      causes a read to return if there is no data available)
  1258.      does this.  Also it is known that telnet mode will hang
  1259.      in such a way that Emacs must be stopped (perhaps this
  1260.      is the same problem).
  1261.      
  1262.      If TIOCREMOTE is turned off, then there is a bug in
  1263.      hp-ux which sometimes loses data.  Apparently the
  1264.      code which blocks the master process when the internal
  1265.      buffer fills up does not work.  Other than this,
  1266.      though, everything else seems to work fine.
  1267.      
  1268.      Since the latter lossage is more benign, we may as well
  1269.      lose that way.  -- cph */
  1270. #ifdef FIONBIO
  1271. #ifdef SYSV_PTYS
  1272.   {
  1273.     int on = 1;
  1274.     ioctl (fd, FIONBIO, &on);
  1275.   }
  1276. #endif
  1277. #endif
  1278. #ifdef IBMRTAIX
  1279.   /* On AIX, the parent gets SIGHUP when a pty attached child dies.  So, we */
  1280.   /* ignore SIGHUP once we've started a child on a pty.  Note that this may */
  1281.   /* cause EMACS not to die when it should, i.e., when its own controlling  */
  1282.   /* tty goes away.  I've complained to the AIX developers, and they may    */
  1283.   /* change this behavior, but I'm not going to hold my breath.             */
  1284.   signal (SIGHUP, SIG_IGN);
  1285. #endif
  1286. }
  1287. #endif /* HAVE_PTYS */
  1288.  
  1289. #ifdef VMS
  1290.  
  1291. /* Assigning an input channel is done at the start of Emacs execution.
  1292.    This is called each time Emacs is resumed, also, but does nothing
  1293.    because input_chain is no longer zero.  */
  1294.  
  1295. init_vms_input()
  1296. {
  1297.   int status;
  1298.   
  1299.   if (input_chan == 0)
  1300.     {
  1301.       status = SYS$ASSIGN (&input_dsc, &input_chan, 0, 0);
  1302.       if (! (status & 1))
  1303.     LIB$STOP (status);
  1304.     }
  1305. }
  1306.  
  1307. /* Deassigning the input channel is done before exiting.  */
  1308.  
  1309. stop_vms_input ()
  1310. {
  1311.   return SYS$DASSGN (input_chan);
  1312. }
  1313.  
  1314. short input_buffer;
  1315.  
  1316. /* Request reading one character into the keyboard buffer.
  1317.    This is done as soon as the buffer becomes empty.  */
  1318.  
  1319. queue_kbd_input ()
  1320. {
  1321.   int status;
  1322.   waiting_for_ast = 0;
  1323.   stop_input = 0;
  1324.   status = SYS$QIO (0, input_chan, IO$_READVBLK,
  1325.             &input_iosb, kbd_input_ast, 1,
  1326.             &input_buffer, 1, 0, terminator_mask, 0, 0);
  1327. }
  1328.  
  1329. int input_count;
  1330.  
  1331. /* Ast routine that is called when keyboard input comes in
  1332.    in accord with the SYS$QIO above.  */
  1333.  
  1334. kbd_input_ast ()
  1335. {
  1336.   register int c = -1;
  1337.   int old_errno = errno;
  1338.  
  1339.   if (waiting_for_ast)
  1340.     SYS$SETEF (input_ef);
  1341.   waiting_for_ast = 0;
  1342.   input_count++;
  1343. #ifdef ASTDEBUG
  1344.   if (input_count == 25)
  1345.     exit (1);
  1346.   printf ("Ast # %d,", input_count);
  1347.   printf (" iosb = %x, %x, %x, %x",
  1348.       input_iosb.offset, input_iosb.status, input_iosb.termlen,
  1349.       input_iosb.term);
  1350. #endif
  1351.   if (input_iosb.offset)
  1352.     {
  1353.       c = input_buffer;
  1354. #ifdef ASTDEBUG
  1355.       printf (", char = 0%o", c);
  1356. #endif
  1357.     }
  1358. #ifdef ASTDEBUG
  1359.   printf ("\n");
  1360.   fflush (stdout);
  1361.   sleep (1);
  1362. #endif
  1363.   if (! stop_input)
  1364.     queue_kbd_input ();
  1365.   if (c >= 0)
  1366.     kbd_buffer_store_char (c);
  1367.  
  1368.   errno = old_errno;
  1369. }
  1370.  
  1371. /* Wait until there is something in kbd_buffer.  */
  1372.  
  1373. wait_for_kbd_input ()
  1374. {
  1375.   extern int have_process_input, process_exited;
  1376.  
  1377.   /* If already something, avoid doing system calls.  */
  1378.   if (detect_input_pending ())
  1379.     {
  1380.       return;
  1381.     }
  1382.   /* Clear a flag, and tell ast routine above to set it.  */
  1383.   SYS$CLREF (input_ef);
  1384.   waiting_for_ast = 1;
  1385.   /* Check for timing error: ast happened while we were doing that.  */
  1386.   if (!detect_input_pending ())
  1387.     {
  1388.       /* No timing error: wait for flag to be set.  */
  1389.       set_waiting_for_input (0);
  1390.       SYS$WFLOR (input_ef, input_eflist);
  1391.       clear_waiting_for_input (0);
  1392.       if (!detect_input_pending ())
  1393.     /* Check for subprocess input availability */
  1394.     {
  1395.       int dsp = have_process_input || process_exited;
  1396.  
  1397.       sys$clref (process_ef);
  1398.       if (have_process_input)
  1399.         process_command_input ();
  1400.       if (process_exited)
  1401.         process_exit ();
  1402.       if (dsp)
  1403.         {
  1404.           update_mode_lines++;
  1405.           redisplay_preserve_echo_area ();
  1406.         }
  1407.     }
  1408.     }
  1409.   waiting_for_ast = 0;
  1410. }
  1411.  
  1412. /* Get rid of any pending QIO, when we are about to suspend
  1413.    or when we want to throw away pending input.
  1414.    We wait for a positive sign that the AST routine has run
  1415.    and therefore there is no I/O request queued when we return.
  1416.    SYS$SETAST is used to avoid a timing error.  */
  1417.  
  1418. end_kbd_input()
  1419. {
  1420. #ifdef ASTDEBUG
  1421.   printf ("At end_kbd_input.\n");
  1422.   fflush (stdout);
  1423.   sleep (1);
  1424. #endif
  1425.   if (LIB$AST_IN_PROG ())  /* Don't wait if suspending from kbd_buffer_store_char! */
  1426.     {
  1427.       SYS$CANCEL (input_chan);
  1428.       return;
  1429.     }
  1430.  
  1431.   SYS$SETAST (0);
  1432.   /* Clear a flag, and tell ast routine above to set it.  */
  1433.   SYS$CLREF (input_ef);
  1434.   waiting_for_ast = 1;
  1435.   stop_input = 1;
  1436.   SYS$CANCEL (input_chan);
  1437.   SYS$SETAST (1);
  1438.   SYS$WAITFR (input_ef);
  1439.   waiting_for_ast = 0;
  1440. }
  1441.  
  1442. /* Wait for either input available or time interval expiry.  */
  1443.  
  1444. input_wait_timeout (timeval)
  1445.      int timeval;        /* Time to wait, in seconds */
  1446. {
  1447.   int time [2];
  1448.   
  1449.   LIB$EMUL (&timeval, &-10000000, &0, time);       /* Convert to VMS format */
  1450.  
  1451.   /* If already something, avoid doing system calls.  */
  1452.   if (detect_input_pending ())
  1453.     {
  1454.       return;
  1455.     }
  1456.   /* Clear a flag, and tell ast routine above to set it.  */
  1457.   SYS$CLREF (input_ef);
  1458.   waiting_for_ast = 1;
  1459.   /* Check for timing error: ast happened while we were doing that.  */
  1460.   if (!detect_input_pending ())
  1461.     {
  1462.       /* No timing error: wait for flag to be set.  */
  1463.       SYS$CANTIM (1, 0);
  1464.       if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
  1465.     SYS$WFLOR (timer_ef, timer_eflist);      /* Wait for timer expiry or input */
  1466.     }
  1467.   waiting_for_ast = 0;
  1468. }
  1469.  
  1470. /* The standard `sleep' routine works some other way
  1471.    and it stops working if you have ever quit out of it.
  1472.    This one continues to work.  */
  1473.  
  1474. sys_sleep (timeval)
  1475.      int timeval;
  1476. {
  1477.   int time [2];
  1478.   
  1479.   LIB$EMUL (&timeval, &-10000000, &0, time);       /* Convert to VMS format */
  1480.  
  1481.   SYS$CANTIM (1, 0);
  1482.   if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */
  1483.     SYS$WAITFR (timer_ef);      /* Wait for timer expiry only */
  1484. }
  1485.  
  1486. init_sigio ()
  1487. {
  1488.   request_sigio ();
  1489. }
  1490.  
  1491. reset_sigio ()
  1492. {
  1493.   unrequest_sigio ();
  1494. }
  1495.  
  1496. request_sigio ()
  1497. {
  1498.   croak ("request sigio");
  1499. }
  1500.  
  1501. unrequest_sigio ()
  1502. {
  1503.   croak ("unrequest sigio");
  1504. }
  1505.  
  1506. #endif /* VMS */
  1507.  
  1508. /* Note that VMS compiler won't accept defined (CANNOT_DUMP).  */
  1509. #ifndef CANNOT_DUMP
  1510. #define NEED_STARTS
  1511. #endif
  1512.  
  1513. #ifndef SYSTEM_MALLOC
  1514. #ifndef NEED_STARTS
  1515. #define NEED_STARTS
  1516. #endif
  1517. #endif
  1518.  
  1519. #ifdef NEED_STARTS
  1520. /* Some systems that cannot dump also cannot implement these.  */
  1521.  
  1522. /*
  1523.  *    Return the address of the start of the text segment prior to
  1524.  *    doing an unexec().  After unexec() the return value is undefined.
  1525.  *    See crt0.c for further explanation and _start().
  1526.  *
  1527.  */
  1528.  
  1529. #ifndef CANNOT_UNEXEC
  1530. char *
  1531. start_of_text ()
  1532. {
  1533. /**
  1534.  **  (sjk)++ Compute text segment from basepage pointers.
  1535.  **/
  1536. #if defined(atarist)
  1537.   return((char *)_base->p_tbase);
  1538. #else
  1539.  
  1540. #ifdef TEXT_START
  1541.   return ((char *) TEXT_START);
  1542. #else
  1543. #ifdef GOULD
  1544.   extern csrt();
  1545.   return ((char *) csrt);
  1546. #else /* not GOULD */
  1547.   extern int _start ();
  1548.   return ((char *) _start);
  1549. #endif /* GOULD */
  1550. #endif /* TEXT_START */
  1551. #endif /* atarist */
  1552. }
  1553. #endif /* not CANNOT_UNEXEC */
  1554.  
  1555. /*
  1556.  *    Return the address of the start of the data segment prior to
  1557.  *    doing an unexec().  After unexec() the return value is undefined.
  1558.  *    See crt0.c for further information and definition of data_start.
  1559.  *
  1560.  *    Apparently, on BSD systems this is etext at startup.  On
  1561.  *    USG systems (swapping) this is highly mmu dependent and
  1562.  *    is also dependent on whether or not the program is running
  1563.  *    with shared text.  Generally there is a (possibly large)
  1564.  *    gap between end of text and start of data with shared text.
  1565.  *
  1566.  *    On Uniplus+ systems with shared text, data starts at a
  1567.  *    fixed address.  Each port (from a given oem) is generally
  1568.  *    different, and the specific value of the start of data can
  1569.  *    be obtained via the UniPlus+ specific "uvar(2)" system call,
  1570.  *    however the method outlined in crt0.c seems to be more portable.
  1571.  *
  1572.  *    Probably what will have to happen when a USG unexec is available,
  1573.  *    at least on UniPlus, is temacs will have to be made unshared so
  1574.  *    that text and data are contiguous.  Then once loadup is complete,
  1575.  *    unexec will produce a shared executable where the data can be
  1576.  *    at the normal shared text boundry and the startofdata variable
  1577.  *    will be patched by unexec to the correct value.
  1578.  *
  1579.  */
  1580.  
  1581. char *
  1582. start_of_data ()
  1583. {
  1584. /**
  1585.  **  (sjk)++ look up in the basepage 
  1586.  **/
  1587. #if defined(atarist)
  1588.   return ((char *) _base->p_dbase);
  1589. #else 
  1590.  
  1591. #ifdef DATA_START
  1592.   return ((char *) DATA_START);
  1593. #else
  1594.   extern int data_start;
  1595.   return ((char *) &data_start);
  1596. #endif
  1597. #endif /* atarist */
  1598. }
  1599. #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
  1600.  
  1601. #ifndef CANNOT_DUMP
  1602. /* Some systems that cannot dump also cannot implement these.  */
  1603.  
  1604. /*
  1605.  *    Return the address of the end of the text segment prior to
  1606.  *    doing an unexec().  After unexec() the return value is undefined.
  1607.  */
  1608.  
  1609. char *
  1610. end_of_text ()
  1611. {
  1612. /**
  1613.  **  (sjk)++ look up in the basepage and compute it
  1614.  **/
  1615. #if defined(atarist)
  1616.   return((char *)( _base->p_tbase + _base->p_tlen - 1));
  1617. #else 
  1618.  
  1619. #ifdef TEXT_END
  1620.   return ((char *) TEXT_END);
  1621. #else
  1622.   extern int etext;
  1623.   return ((char *) &etext);
  1624. #endif
  1625. #endif /* atarist */
  1626. }
  1627.  
  1628. /*
  1629.  *    Return the address of the end of the data segment prior to
  1630.  *    doing an unexec().  After unexec() the return value is undefined.
  1631.  */
  1632.  
  1633. char *
  1634. end_of_data ()
  1635. {
  1636. /**
  1637.  **  (sjk)++ look it up in the basepage
  1638.  **/
  1639. #if defined(atarist)
  1640.   return((char *) (_base->p_dbase + _base->p_dlen - 1));
  1641. #else
  1642.  
  1643. #ifdef DATA_END
  1644.   return ((char *) DATA_END);
  1645. #else
  1646.   extern int edata;
  1647.   return ((char *) &edata);
  1648. #endif
  1649. #endif /* atarist */
  1650. }
  1651.  
  1652. #endif /* not CANNOT_DUMP */
  1653.  
  1654. /* Get_system_name returns as its value
  1655.  a string for the Lisp function system-name to return. */
  1656.  
  1657. #ifdef BSD4_1
  1658. #include <whoami.h>
  1659. #endif
  1660.  
  1661. #ifdef USG
  1662. /* Can't have this within the function since `static' is #defined to nothing */
  1663. static struct utsname get_system_name_name;
  1664. #endif
  1665.  
  1666. char *
  1667. get_system_name ()
  1668. {
  1669. #ifdef USG
  1670.   uname (&get_system_name_name);
  1671.   return (get_system_name_name.nodename);
  1672. #else /* Not USG */
  1673. #ifdef BSD4_1
  1674.   return sysname;
  1675. #else /* not USG, not 4.1 */
  1676.   static char system_name_saved[32];
  1677. #ifdef VMS
  1678.   char *sp;
  1679.   if ((sp = egetenv("SYS$NODE")) == 0)
  1680.     sp = "vax-vms";
  1681.   else
  1682.     {
  1683.       char *end;
  1684.  
  1685.       if ((end = index (sp, ':')) != 0)
  1686.     *end = '\0';
  1687.     }
  1688.   strcpy (system_name_saved, sp);
  1689. #else /* not VMS */
  1690.   gethostname (system_name_saved, sizeof (system_name_saved));
  1691. #endif /* not VMS */
  1692.   return system_name_saved;
  1693. #endif /* not USG, not 4.1 */
  1694. #endif /* not USG */
  1695. }
  1696.  
  1697. #ifndef HAVE_SELECT
  1698.  
  1699. /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
  1700.  * Only checks read descriptors.
  1701.  */
  1702. /* How long to wait between checking fds in select */
  1703. #define SELECT_PAUSE 1
  1704. int select_alarmed;
  1705.  
  1706. /* For longjmp'ing back to read_input_waiting.  */
  1707.  
  1708. jmp_buf read_alarm_throw;
  1709.  
  1710. /* Nonzero if the alarm signal should throw back to read_input_waiting.
  1711.    The read_socket_hook function sets this to 1 while it is waiting.  */
  1712.  
  1713. int read_alarm_should_throw;
  1714.  
  1715. select_alarm ()
  1716. {
  1717.   select_alarmed = 1;
  1718. #ifdef BSD4_1
  1719.   sigrelse (SIGALRM);
  1720. #else /* not BSD4_1 */
  1721.   signal (SIGALRM, SIG_IGN);
  1722. #endif /* not BSD4_1 */
  1723.   if (read_alarm_should_throw)
  1724.     longjmp (read_alarm_throw, 1);
  1725. }
  1726.  
  1727. /* Only rfds are checked.  */
  1728. int
  1729. select (nfds, rfds, wfds, efds, timeout)
  1730.      int nfds;
  1731.      int *rfds, *wfds, *efds, *timeout;
  1732. {
  1733.   int ravail = 0, orfds = 0, old_alarm;
  1734.   int timeoutval = timeout ? *timeout : 100000;
  1735.   int *local_timeout = &timeoutval;
  1736.   extern int kbd_count;
  1737.   extern int proc_buffered_char[];
  1738.  
  1739. #ifndef subprocesses
  1740.   int process_tick = 0, update_tick = 0;
  1741. #else
  1742.   extern int process_tick, update_tick;
  1743. #endif
  1744.   int (*old_trap) ();
  1745.   char buf;
  1746.  
  1747.   if (rfds)
  1748.     {
  1749.       orfds = *rfds;
  1750.       *rfds = 0;
  1751.     }
  1752.   if (wfds)
  1753.     *wfds = 0;
  1754.   if (efds)
  1755.     *efds = 0;
  1756.  
  1757.   /* If we are looking only for the terminal, with no timeout,
  1758.      just read it and wait -- that's more efficient.  */
  1759.   if (orfds == 1 && (!timeout || *timeout == 100000)
  1760.       && process_tick == update_tick)
  1761.     {
  1762.       if (!kbd_count)
  1763.     read_input_waiting ();
  1764.       *rfds = 1;
  1765.       return 1;
  1766.     }
  1767.  
  1768.   /* Once a second, till the timer expires, check all the flagged read
  1769.    * descriptors to see if any input is available.  If there is some then
  1770.    * set the corresponding bit in the return copy of rfds.
  1771.    */ 
  1772.   while (1)
  1773.     {
  1774.       register int to_check, bit, fd;
  1775.  
  1776.       if (rfds)
  1777.     {
  1778.       for (to_check = nfds, bit = 1, fd = 0; --to_check >= 0; bit <<= 1, fd++)
  1779.         {
  1780.           if (orfds & bit)
  1781.         {
  1782.           int avail = 0, status = 0;
  1783.  
  1784.           if (bit == 1)
  1785.             avail = detect_input_pending(); /* Special keyboard handler */
  1786.           else
  1787.             {
  1788. #ifdef FIONREAD
  1789.               status = ioctl (fd, FIONREAD, &avail);
  1790. #else /* no FIONREAD */
  1791.               /* Hoping it will return -1 if nothing available
  1792.              or 0 if all 0 chars requested are read.  */
  1793.               if (proc_buffered_char[fd] >= 0)
  1794.             avail = 1;
  1795.               else
  1796.             {
  1797.               avail = read (fd, &buf, 1);
  1798.               if (avail > 0)
  1799.                 proc_buffered_char[fd] = buf;
  1800.             }
  1801. #endif /* no FIONREAD */
  1802.             }
  1803.           if (status >= 0 && avail > 0)
  1804.             {
  1805.               (*rfds) |= bit;
  1806.               ravail++;
  1807.             }
  1808.         }
  1809.         }
  1810.     }
  1811.       if (*local_timeout == 0 || ravail != 0 || process_tick != update_tick)
  1812.     break;
  1813.       old_alarm = alarm (0);
  1814. /**
  1815.  **  (sjk)++ typecast the signal
  1816.  **/
  1817. #if defined(atarist)
  1818.       old_trap = (int (*)()) signal (SIGALRM, (__Sigfunc)select_alarm);
  1819. #else
  1820.       old_trap = (int (*)()) signal (SIGALRM, select_alarm);
  1821. #endif
  1822.  
  1823.       select_alarmed = 0;
  1824.       alarm (SELECT_PAUSE);
  1825.       /* Wait for a SIGALRM (or maybe a SIGTINT) */
  1826.       while (select_alarmed == 0 && *local_timeout != 0
  1827.          && process_tick == update_tick)
  1828.     {
  1829.       /* If we are interested in terminal input,
  1830.          wait by reading the terminal.
  1831.          That makes instant wakeup for terminal input at least.  */
  1832.       if (orfds & 1)
  1833.         {
  1834.           read_input_waiting ();
  1835.           if (kbd_count)
  1836.         select_alarmed = 1;
  1837.         }
  1838.       else
  1839.         pause();
  1840.     }
  1841.       (*local_timeout) -= SELECT_PAUSE;
  1842.       /* Reset the old alarm if there was one */
  1843.       alarm (0);
  1844. /**
  1845.  **  (sjk)++ typecast the signal
  1846.  **/
  1847. #if defined(atarist)
  1848.       signal (SIGALRM, (__Sigfunc)old_trap);
  1849. #else
  1850.       signal (SIGALRM, old_trap);
  1851. #endif
  1852.       if (old_alarm != 0)
  1853.     {
  1854.       /* Reset or forge an interrupt for the original handler. */
  1855.       old_alarm -= SELECT_PAUSE;
  1856.       if (old_alarm <= 0)
  1857.         kill (getpid (), SIGALRM); /* Fake an alarm with the orig' handler */
  1858.       else
  1859.         alarm (old_alarm);
  1860.     }
  1861.       if (*local_timeout == 0)  /* Stop on timer being cleared */
  1862.     break;
  1863.     }
  1864.   return ravail;
  1865. }
  1866.  
  1867. /* Read keyboard input into the standard buffer,
  1868.    waiting for at least one character.  */
  1869.  
  1870. /* Make all keyboard buffers much bigger when using X windows.  */
  1871. #ifdef HAVE_X_WINDOWS
  1872. #define BUFFER_SIZE_FACTOR 16
  1873. #else
  1874. #define BUFFER_SIZE_FACTOR 1
  1875. #endif
  1876.  
  1877. read_input_waiting ()
  1878. {
  1879.   extern int kbd_count;
  1880.   extern unsigned char kbd_buffer[];
  1881.   extern unsigned char *kbd_ptr;
  1882.   int val;
  1883.  
  1884.   if (read_socket_hook)
  1885.     {
  1886.       read_alarm_should_throw = 0;
  1887.       if (! setjmp (read_alarm_throw))
  1888.     val = (*read_socket_hook) (0, kbd_buffer, 256 * BUFFER_SIZE_FACTOR);
  1889.       else
  1890.     val = -1;
  1891.     }
  1892.   else
  1893.     val = read (fileno (stdin), kbd_buffer, 1);
  1894.  
  1895.   if (val > 0)
  1896.     {
  1897.       kbd_ptr = kbd_buffer;
  1898.       kbd_count = val;
  1899.     }
  1900. }
  1901.  
  1902. #endif /* not HAVE_SELECT */
  1903.  
  1904. #ifdef BSD4_1
  1905. /* VARARGS */
  1906. setpriority ()
  1907. {
  1908.   return 0;
  1909. }
  1910.  
  1911. /*
  1912.  * Partially emulate 4.2 open call.
  1913.  * open is defined as this in 4.1.
  1914.  *
  1915.  * - added by Michael Bloom @ Citicorp/TTI
  1916.  *
  1917.  */
  1918.  
  1919. int
  1920. sys_open (path, oflag, mode)
  1921.      char *path;
  1922.      int oflag, mode;
  1923. {
  1924.   if (oflag & O_CREAT) 
  1925.     return creat (path, mode);
  1926.   else
  1927.     return open (path, oflag);
  1928. }
  1929.  
  1930. init_sigio ()
  1931. {
  1932.   if (noninteractive)
  1933.     return;
  1934.   lmode = LINTRUP | lmode;
  1935.   ioctl (0, TIOCLSET, &lmode);
  1936. }
  1937.  
  1938. reset_sigio ()
  1939. {
  1940.   if (noninteractive)
  1941.     return;
  1942.   lmode = ~LINTRUP & lmode;
  1943.   ioctl (0, TIOCLSET, &lmode);
  1944. }
  1945.  
  1946. request_sigio ()
  1947. {
  1948.   sigrelse (SIGTINT);
  1949.  
  1950.   interrupts_deferred = 0;
  1951. }
  1952.  
  1953. unrequest_sigio ()
  1954. {
  1955.   sighold (SIGTINT);
  1956.  
  1957.   interrupts_deferred = 1;
  1958. }
  1959.  
  1960. /* still inside #ifdef BSD4_1 */
  1961. #ifdef subprocesses
  1962.  
  1963. int sigheld; /* Mask of held signals */
  1964.  
  1965. sigholdx (signum)
  1966.      int signum;
  1967. {
  1968.   sigheld |= sigbit (signum);
  1969.   sighold (signum);
  1970. }
  1971.  
  1972. sigisheld (signum)
  1973.      int signum;
  1974. {
  1975.   sigheld |= sigbit (signum);
  1976. }
  1977.  
  1978. sigunhold (signum)
  1979.      int signum;
  1980. {
  1981.   sigheld &= ~sigbit (signum);
  1982.   sigrelse (signum);
  1983. }
  1984.  
  1985. sigfree ()    /* Free all held signals */
  1986. {
  1987.   int i;
  1988.   for (i = 0; i < NSIG; i++)
  1989.     if (sigheld & sigbit (i))
  1990.       sigrelse (i);
  1991.   sigheld = 0;
  1992. }
  1993.  
  1994. sigbit (i)
  1995. {
  1996.   return 1 << (i - 1);
  1997. }
  1998. #endif /* subprocesses */
  1999. #endif /* BSD4_1 */
  2000.  
  2001. #ifndef BSTRING
  2002.  
  2003. void
  2004. bzero (b, length)
  2005.      register char *b;
  2006.      register int length;
  2007. {
  2008. #ifdef VMS
  2009.   short zero = 0;
  2010.   long max_str = 65535;
  2011.  
  2012.   while (length > max_str) {
  2013.     (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b);
  2014.     length -= max_str;
  2015.     b += max_str;
  2016.   }
  2017.   (void) LIB$MOVC5 (&zero, &zero, &zero, &length, b);
  2018. #else
  2019.   while (length-- > 0)
  2020.     *b++ = 0;
  2021. #endif /* not VMS */
  2022. }
  2023.  
  2024. /* Saying `void' requires a declaration, above, where bcopy is used
  2025.    and that declaration causes pain for systems where bcopy is a macro.  */
  2026. bcopy (b1, b2, length)
  2027.      register char *b1;
  2028.      register char *b2;
  2029.      register int length;
  2030. {
  2031. #ifdef VMS
  2032.   long max_str = 65535;
  2033.  
  2034.   while (length > max_str) {
  2035.     (void) LIB$MOVC3 (&max_str, b1, b2);
  2036.     length -= max_str;
  2037.     b1 += max_str;
  2038.     b2 += max_str;
  2039.   }
  2040.   (void) LIB$MOVC3 (&length, b1, b2);
  2041. #else
  2042.   while (length-- > 0)
  2043.     *b2++ = *b1++;
  2044. #endif /* not VMS */
  2045. }
  2046.  
  2047. int
  2048. bcmp (b1, b2, length)    /* This could be a macro! */
  2049.      register char *b1;
  2050.      register char *b2;
  2051.      register int length;
  2052. {
  2053. #ifdef VMS
  2054.   struct dsc$descriptor_s src1 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b1};
  2055.   struct dsc$descriptor_s src2 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b2};
  2056.  
  2057.   return STR$COMPARE (&src1, &src2);
  2058. #else
  2059.   while (length-- > 0)
  2060.     if (*b1++ != *b2++)
  2061.       return 1;
  2062.  
  2063.   return 0;
  2064. #endif /* not VMS */
  2065. }
  2066. #endif /* not BSTRING */
  2067.  
  2068. /**
  2069.  **  (sjk)++ redefine this to make our life easy.
  2070.  **/
  2071. #ifdef atarist
  2072. long random ()
  2073. {
  2074.   return (rand ());
  2075. }
  2076.  
  2077. srandom (arg)
  2078.      int arg;
  2079. {
  2080.   srand (arg);
  2081. }
  2082. #endif /* atarist */
  2083.  
  2084. #ifdef BSD4_1
  2085. long random ()
  2086. {
  2087.   return (rand ());
  2088. }
  2089.  
  2090. srandom (arg)
  2091.      int arg;
  2092. {
  2093.   srand (arg);
  2094. }
  2095. #endif BSD4_1
  2096.  
  2097. #ifdef HPUX
  2098. #ifdef X11
  2099. #define HAVE_RANDOM
  2100. #endif
  2101. #endif
  2102.  
  2103. #ifdef USG
  2104. #ifndef HAVE_RANDOM
  2105. /*
  2106.  *    The BSD random(3) returns numbers in the range of
  2107.  *    0 to 2e31 - 1.  The USG rand(3C) returns numbers in the
  2108.  *    range of 0 to 2e15 - 1.  This is probably not significant
  2109.  *    in this usage.
  2110.  */
  2111.   
  2112. long
  2113. random ()
  2114. {
  2115.   /* Arrange to return a range centered on zero.  */
  2116.   return rand () - (1 << 14);
  2117. }
  2118.  
  2119. srandom (arg)
  2120.      int arg;
  2121. {
  2122.   srand (arg);
  2123. }
  2124.  
  2125. #endif /* HAVE_RANDOM */
  2126. #endif /* USG */
  2127.  
  2128.  
  2129. #ifdef VMS
  2130.  
  2131. #ifdef getenv
  2132. /* If any place else asks for the TERM variable,
  2133.    allow it to be overridden with the EMACS_TERM variable
  2134.    before attempting to translate the logical name TERM.  As a last
  2135.    resort, ask for VAX C's special idea of the TERM variable.  */
  2136. #undef getenv
  2137. char *
  2138. sys_getenv (name)
  2139.      char *name;
  2140. {
  2141.   register char *val;
  2142.   static char buf[256];
  2143.   static struct dsc$descriptor_s equiv
  2144.     = {sizeof(buf), DSC$K_DTYPE_T, DSC$K_CLASS_S, buf};
  2145.   static struct dsc$descriptor_s d_name
  2146.     = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
  2147.   short eqlen;
  2148.  
  2149.   if (!strcmp (name, "TERM"))
  2150.     {
  2151.       val = (char *) getenv ("EMACS_TERM");
  2152.       if (val)
  2153.     return val;
  2154.     }
  2155.  
  2156.   d_name.dsc$w_length = strlen (name);
  2157.   d_name.dsc$a_pointer = name;
  2158.   if (lib$sys_trnlog (&d_name, &eqlen, &equiv) == 1)
  2159.     {
  2160.       char *str = (char *) xmalloc (eqlen + 1);
  2161.       bcopy (buf, str, eqlen);
  2162.       str[eqlen] = '\0';
  2163.       /* This is a storage leak, but a pain to fix.  With luck,
  2164.      no one will ever notice.  */
  2165.       return str;
  2166.     }
  2167.   return (char *) getenv (name);
  2168. }
  2169. #endif /* getenv */
  2170.  
  2171. #ifdef abort
  2172. /* Since VMS doesn't believe in core dumps, the only way to debug this beast is
  2173.    to force a call on the debugger from within the image. */
  2174. #undef abort
  2175. sys_abort ()
  2176. {
  2177.   reset_sys_modes ();
  2178.   LIB$SIGNAL (SS$_DEBUG);
  2179. }
  2180. #endif /* abort */
  2181. #endif /* VMS */
  2182.  
  2183. #ifdef VMS
  2184. #ifdef LINK_CRTL_SHARE
  2185. #ifdef SHAREABLE_LIB_BUG
  2186. /* Variables declared noshare and initialized in shareable libraries
  2187.    cannot be shared.  The VMS linker incorrectly forces you to use a private
  2188.    version which is uninitialized... If not for this "feature", we
  2189.    could use the C library definition of sys_nerr and sys_errlist. */
  2190. int sys_nerr = 35;
  2191. char *sys_errlist[] =
  2192.   {
  2193.     "error 0",
  2194.     "not owner",
  2195.     "no such file or directory",
  2196.     "no such process",
  2197.     "interrupted system call",
  2198.     "i/o error",
  2199.     "no such device or address",
  2200.     "argument list too long",
  2201.     "exec format error",
  2202.     "bad file number",
  2203.     "no child process",
  2204.     "no more processes",
  2205.     "not enough memory",
  2206.     "permission denied",
  2207.     "bad address",
  2208.     "block device required",
  2209.     "mount devices busy",
  2210.     "file exists",
  2211.     "cross-device link",
  2212.     "no such device",
  2213.     "not a directory",
  2214.     "is a directory",
  2215.     "invalid argument",
  2216.     "file table overflow",
  2217.     "too many open files",
  2218.     "not a typewriter",
  2219.     "text file busy",
  2220.     "file too big",
  2221.     "no space left on device",
  2222.     "illegal seek",
  2223.     "read-only file system",
  2224.     "too many links",
  2225.     "broken pipe",
  2226.     "math argument",
  2227.     "result too large",
  2228.     "I/O stream empty",
  2229.     "vax/vms specific error code nontranslatable error"
  2230.   };
  2231. #endif /* SHAREABLE_LIB_BUG */
  2232. #endif /* LINK_CRTL_SHARE */
  2233. #endif /* VMS */
  2234.  
  2235. #ifdef INTERRUPTABLE_OPEN
  2236.  
  2237. int
  2238. /* VARARGS 2 */
  2239. sys_open (path, oflag, mode)
  2240.      char *path;
  2241.      int oflag, mode;
  2242. {
  2243.   register int rtnval;
  2244.   
  2245.   while ((rtnval = open (path, oflag, mode)) == -1
  2246.      && (errno == EINTR));
  2247.   return (rtnval);
  2248. }
  2249.  
  2250. #endif /* INTERRUPTABLE_OPEN */
  2251.  
  2252. #ifdef INTERRUPTABLE_CLOSE
  2253.  
  2254. sys_close (fd)
  2255.      int fd;
  2256. {
  2257.   register int rtnval;
  2258.  
  2259.   while ((rtnval = close(fd)) == -1
  2260.      && (errno == EINTR));
  2261.   return rtnval;
  2262. }
  2263.  
  2264. #endif /* INTERRUPTABLE_CLOSE */
  2265.  
  2266. #ifdef INTERRUPTABLE_IO
  2267.  
  2268. int
  2269. sys_read (fildes, buf, nbyte)
  2270.      int fildes;
  2271.      char *buf;
  2272.      unsigned int nbyte;
  2273. {
  2274.   register int rtnval;
  2275.   
  2276.   while ((rtnval = read (fildes, buf, nbyte)) == -1
  2277.      && (errno == EINTR));
  2278.   return (rtnval);
  2279. }
  2280.  
  2281. int
  2282. sys_write (fildes, buf, nbyte)
  2283.      int fildes;
  2284.      char *buf;
  2285.      unsigned int nbyte;
  2286. {
  2287.   register int rtnval;
  2288.  
  2289.   while ((rtnval = write (fildes, buf, nbyte)) == -1
  2290.      && (errno == EINTR));
  2291.   return (rtnval);
  2292. }
  2293.  
  2294. #endif /* INTERRUPTABLE_IO */
  2295.  
  2296. #ifdef USG
  2297. /*
  2298.  *    All of the following are for USG.
  2299.  *
  2300.  *    On USG systems the system calls are interruptable by signals
  2301.  *    that the user program has elected to catch.  Thus the system call
  2302.  *    must be retried in these cases.  To handle this without massive
  2303.  *    changes in the source code, we remap the standard system call names
  2304.  *    to names for our own functions in sysdep.c that do the system call
  2305.  *    with retries.  Actually, for portability reasons, it is good
  2306.  *    programming practice, as this example shows, to limit all actual
  2307.  *    system calls to a single occurance in the source.  Sure, this
  2308.  *    adds an extra level of function call overhead but it is almost
  2309.  *    always negligible.   Fred Fish, Unisoft Systems Inc.
  2310.  */
  2311.  
  2312. char *sys_siglist[NSIG + 1] =
  2313. {
  2314. #ifdef AIX
  2315. /* AIX has changed the signals a bit */
  2316.   "bogus signal",            /* 0 */
  2317.   "hangup",                /* 1  SIGHUP */
  2318.   "interrupt",                /* 2  SIGINT */
  2319.   "quit",                /* 3  SIGQUIT */
  2320.   "illegal instruction",        /* 4  SIGILL */
  2321.   "trace trap",                /* 5  SIGTRAP */
  2322.   "IOT instruction",            /* 6  SIGIOT */
  2323.   "crash likely",            /* 7  SIGDANGER */
  2324.   "floating point exception",        /* 8  SIGFPE */
  2325.   "kill",                /* 9  SIGKILL */
  2326.   "bus error",                /* 10 SIGBUS */
  2327.   "segmentation violation",        /* 11 SIGSEGV */
  2328.   "bad argument to system call",    /* 12 SIGSYS */
  2329.   "write on a pipe with no one to read it", /* 13 SIGPIPE */
  2330.   "alarm clock",            /* 14 SIGALRM */
  2331.   "software termination signum",    /* 15 SIGTERM */
  2332.   "user defined signal 1",        /* 16 SIGUSR1 */
  2333.   "user defined signal 2",        /* 17 SIGUSR2 */
  2334.   "death of a child",            /* 18 SIGCLD */
  2335.   "power-fail restart",            /* 19 SIGPWR */
  2336.   "bogus signal",            /* 20 */
  2337.   "bogus signal",            /* 21 */
  2338.   "bogus signal",            /* 22 */
  2339.   "bogus signal",            /* 23 */
  2340.   "bogus signal",            /* 24 */
  2341.   "LAN I/O interrupt",            /* 25 SIGAIO */
  2342.   "PTY I/O interrupt",            /* 26 SIGPTY */
  2343.   "I/O intervention required",        /* 27 SIGIOINT */
  2344.   "HFT grant",                /* 28 SIGGRANT */
  2345.   "HFT retract",            /* 29 SIGRETRACT */
  2346.   "HFT sound done",            /* 30 SIGSOUND */
  2347.   "HFT input ready",            /* 31 SIGMSG */
  2348. #else /* not AIX */
  2349.   "bogus signal",            /* 0 */
  2350.   "hangup",                /* 1  SIGHUP */
  2351.   "interrupt",                /* 2  SIGINT */
  2352.   "quit",                /* 3  SIGQUIT */
  2353.   "illegal instruction",        /* 4  SIGILL */
  2354.   "trace trap",                /* 5  SIGTRAP */
  2355.   "IOT instruction",            /* 6  SIGIOT */
  2356.   "EMT instruction",            /* 7  SIGEMT */
  2357.   "floating point exception",        /* 8  SIGFPE */
  2358.   "kill",                /* 9  SIGKILL */
  2359.   "bus error",                /* 10 SIGBUS */
  2360.   "segmentation violation",        /* 11 SIGSEGV */
  2361.   "bad argument to system call",    /* 12 SIGSYS */
  2362.   "write on a pipe with no one to read it", /* 13 SIGPIPE */
  2363.   "alarm clock",            /* 14 SIGALRM */
  2364.   "software termination signum",    /* 15 SIGTERM */
  2365.   "user defined signal 1",        /* 16 SIGUSR1 */
  2366.   "user defined signal 2",        /* 17 SIGUSR2 */
  2367.   "death of a child",            /* 18 SIGCLD */
  2368.   "power-fail restart",            /* 19 SIGPWR */
  2369. #endif /* not AIX */
  2370.   0
  2371.   };
  2372.  
  2373. /*
  2374.  *    Warning, this function may not duplicate 4.2 action properly
  2375.  *    under error conditions.
  2376.  */
  2377.  
  2378. #ifndef MAXPATHLEN
  2379. /* In 4.1, param.h fails to define this.  */
  2380. #define MAXPATHLEN 1024
  2381. #endif
  2382.  
  2383. #ifndef HAVE_GETWD
  2384.  
  2385. char *
  2386. getwd (pathname)
  2387.      char *pathname;
  2388. {
  2389.   char *npath, *spath;
  2390.   extern char *getcwd ();
  2391.  
  2392.   spath = npath = getcwd ((char *) 0, MAXPATHLEN);
  2393.   /* On Altos 3068, getcwd can return @hostname/dir, so discard
  2394.      up to first slash.  Should be harmless on other systems.  */
  2395.   while (*npath && *npath != '/')
  2396.     npath++;
  2397.   strcpy (pathname, npath);
  2398.   free (spath);            /* getcwd uses malloc */
  2399.   return pathname;
  2400. }
  2401.  
  2402. #endif HAVE_GETWD
  2403.  
  2404. #ifndef HAVE_RENAME
  2405.  
  2406. /*
  2407.  *    Emulate rename using unlink/link.  Note that this is
  2408.  *    only partially correct.  Also, doesn't enforce restriction
  2409.  *    that files be of same type (regular->regular, dir->dir, etc).
  2410.  */
  2411.  
  2412. rename (from, to)
  2413.      char *from;
  2414.      char *to;
  2415. {
  2416.   if (access (from, 0) == 0)
  2417.     {
  2418.       unlink (to);
  2419.       if (link (from, to) == 0)
  2420.     if (unlink (from) == 0)
  2421.       return (0);
  2422.     }
  2423.   return (-1);
  2424. }
  2425. #endif /* not HAVE_RENAME */
  2426.  
  2427. /* VARARGS */
  2428. setpriority ()
  2429. {
  2430.   return (0);
  2431. }
  2432.  
  2433. #ifndef HAVE_VFORK
  2434.  
  2435. /*
  2436.  *    Substitute fork(2) for vfork(2) on USG flavors.
  2437.  */
  2438.  
  2439. vfork ()
  2440. {
  2441.   return (fork ());
  2442. }
  2443.  
  2444. #endif /* not HAVE_VFORK */
  2445.  
  2446. #ifdef MISSING_UTIMES
  2447.  
  2448. /* HPUX (among others) sets HAVE_TIMEVAL but does not implement utimes.  */
  2449.  
  2450. utimes ()
  2451. {
  2452. }
  2453. #endif
  2454.  
  2455. #ifdef IRIS_UTIME
  2456.  
  2457. /* The IRIS (3.5) has timevals, but uses sys V utime, and doesn't have the
  2458.    utimbuf structure defined anywhere but in the man page. */
  2459.  
  2460. struct utimbuf
  2461.  {
  2462.    long actime;
  2463.    long modtime;
  2464.  };
  2465.  
  2466. utimes (name, tvp)
  2467.      char *name;
  2468.      struct timeval tvp[];
  2469. {
  2470.   struct utimbuf utb;
  2471.   utb.actime  = tvp[0].tv_sec;
  2472.   utb.modtime = tvp[1].tv_sec;
  2473.   utime (name, &utb);
  2474. }
  2475. #endif /* IRIS_UTIME */
  2476.  
  2477.  
  2478. #if 0
  2479. #ifdef HPUX
  2480.  
  2481. /* HPUX curses library references perror, but as far as we know
  2482.    it won't be called.  Anyway this definition will do for now.  */
  2483.  
  2484. perror ()
  2485. {
  2486. }
  2487.  
  2488. #endif /* HPUX */
  2489. #endif /* 0 */
  2490.  
  2491. #ifndef HAVE_DUP2
  2492.  
  2493. /*
  2494.  *    Emulate BSD dup2(2).  First close newd if it already exists.
  2495.  *    Then, attempt to dup oldd.  If not successful, call dup2 recursively
  2496.  *    until we are, then close the unsuccessful ones.
  2497.  */
  2498.  
  2499. dup2 (oldd, newd)
  2500.      int oldd;
  2501.      int newd;
  2502. {
  2503.   register int fd;
  2504.   
  2505.   sys_close (newd);
  2506.  
  2507. #ifdef F_DUPFD
  2508.   fd = fcntl (oldd, F_DUPFD, newd);
  2509.   if (fd != newd)
  2510.     error ("cant dup2(%i,%i) : %s", oldd, newd, sys_errlist[errno]);
  2511. #else
  2512.   while ((fd = dup (oldd)) != newd)
  2513.     {
  2514.       dup2 (oldd, newd);
  2515.       sys_close (fd);
  2516.     }
  2517. #endif
  2518. }
  2519.  
  2520. #endif /* not HAVE_DUP2 */
  2521.  
  2522. /*
  2523.  *    Gettimeofday.  Simulate as much as possible.  Only accurate
  2524.  *    to nearest second.  Emacs doesn't use tzp so ignore it for now.
  2525.  *    Only needed when subprocesses are defined.
  2526.  */
  2527.  
  2528. #ifdef subprocesses
  2529. #ifndef HAVE_GETTIMEOFDAY
  2530. #ifdef HAVE_TIMEVAL
  2531.  
  2532. /* ARGSUSED */
  2533. gettimeofday (tp, tzp)
  2534.      struct timeval *tp;
  2535.      struct timezone *tzp;
  2536. {
  2537.   extern long time ();
  2538.  
  2539.   tp->tv_sec = time ((long *)0);    
  2540.   tp->tv_usec = 0;
  2541. }
  2542.  
  2543. #endif
  2544. #endif
  2545. #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL */
  2546.   
  2547. /*
  2548.  *    This function will go away as soon as all the stubs fixed. (fnf)
  2549.  */
  2550.  
  2551. croak (badfunc)
  2552.      char *badfunc;
  2553. {
  2554.   printf ("%s not yet implemented\r\n", badfunc);
  2555.   reset_sys_modes ();
  2556.   exit (1);
  2557. }
  2558.  
  2559. #endif /* USG */
  2560.  
  2561. /* Directory routines for systems that don't have them. */
  2562.  
  2563. #ifdef SYSV_SYSTEM_DIR
  2564.  
  2565. #include <dirent.h>
  2566.  
  2567. #ifndef HAVE_CLOSEDIR
  2568. int
  2569. closedir (dirp)
  2570.      register DIR *dirp;              /* stream from opendir() */
  2571. {
  2572.   sys_close (dirp->dd_fd);
  2573.   free ((char *) dirp->dd_buf);       /* directory block defined in <dirent.h> */
  2574.   free ((char *) dirp);
  2575. }
  2576. #endif /* not HAVE_CLOSEDIR */
  2577.  
  2578. #endif /* SYSV_SYSTEM_DIR */
  2579.  
  2580. #ifdef NONSYSTEM_DIR_LIBRARY
  2581.  
  2582. DIR *
  2583. opendir (filename)
  2584.      char *filename;    /* name of directory */
  2585. {
  2586.   register DIR *dirp;        /* -> malloc'ed storage */
  2587.   register int fd;        /* file descriptor for read */
  2588.   struct stat sbuf;        /* result of fstat() */
  2589.  
  2590.   fd = sys_open (filename, 0);
  2591.   if (fd < 0)
  2592.     return 0;
  2593.  
  2594.   if (fstat (fd, &sbuf) < 0
  2595.       || (sbuf.st_mode & S_IFMT) != S_IFDIR
  2596.       || (dirp = (DIR *) malloc (sizeof (DIR))) == 0)
  2597.     {
  2598.       sys_close (fd);
  2599.       return 0;        /* bad luck today */
  2600.     }
  2601.  
  2602.   dirp->dd_fd = fd;
  2603.   dirp->dd_loc = dirp->dd_size = 0;    /* refill needed */
  2604.  
  2605.   return dirp;
  2606. }
  2607.  
  2608. void
  2609. closedir (dirp)
  2610.      register DIR *dirp;        /* stream from opendir() */
  2611. {
  2612.   sys_close (dirp->dd_fd);
  2613.   free ((char *) dirp);
  2614. }
  2615.  
  2616.  
  2617. #ifndef VMS
  2618. #define DIRSIZ    14
  2619. struct olddir
  2620.   {
  2621.     ino_t od_ino;         /* inode */
  2622.     char od_name[DIRSIZ];    /* filename */
  2623.   };
  2624. #endif /* not VMS */
  2625.  
  2626. struct direct dir_static;    /* simulated directory contents */
  2627.  
  2628. /* ARGUSED */
  2629. struct direct *
  2630. readdir (dirp)
  2631.      register DIR *dirp;    /* stream from opendir() */
  2632. {
  2633. #ifndef VMS
  2634.   register struct olddir *dp;    /* -> directory data */
  2635. #else /* VMS */
  2636.   register struct dir$_name *dp; /* -> directory data */
  2637.   register struct dir$_version *dv; /* -> version data */
  2638. #endif /* VMS */
  2639.  
  2640.   for (; ;)
  2641.     {
  2642.       if (dirp->dd_loc >= dirp->dd_size)
  2643.     dirp->dd_loc = dirp->dd_size = 0;
  2644.  
  2645.       if (dirp->dd_size == 0     /* refill buffer */
  2646.       && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
  2647.     return 0;
  2648.  
  2649. #ifndef VMS
  2650.       dp = (struct olddir *) &dirp->dd_buf[dirp->dd_loc];
  2651.       dirp->dd_loc += sizeof (struct olddir);
  2652.  
  2653.       if (dp->od_ino != 0)    /* not deleted entry */
  2654.     {
  2655.       dir_static.d_ino = dp->od_ino;
  2656.       strncpy (dir_static.d_name, dp->od_name, DIRSIZ);
  2657.       dir_static.d_name[DIRSIZ] = '\0';
  2658.       dir_static.d_namlen = strlen (dir_static.d_name);
  2659.       dir_static.d_reclen = sizeof (struct direct)
  2660.         - MAXNAMLEN + 3
  2661.           + dir_static.d_namlen - dir_static.d_namlen % 4;
  2662.       return &dir_static;    /* -> simulated structure */
  2663.     }
  2664. #else /* VMS */
  2665.       dp = (struct dir$_name *) dirp->dd_buf;
  2666.       if (dirp->dd_loc == 0)
  2667.     dirp->dd_loc = (dp->dir$b_namecount&1) ? dp->dir$b_namecount + 1
  2668.       : dp->dir$b_namecount;
  2669.       dv = (struct dir$_version *)&dp->dir$t_name[dirp->dd_loc];
  2670.       dir_static.d_ino = dv->dir$w_fid_num;
  2671.       dir_static.d_namlen = dp->dir$b_namecount;
  2672.       dir_static.d_reclen = sizeof (struct direct)
  2673.     - MAXNAMLEN + 3
  2674.       + dir_static.d_namlen - dir_static.d_namlen % 4;
  2675.       strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
  2676.       dir_static.d_name[dir_static.d_namlen] = '\0';
  2677.       dirp->dd_loc = dirp->dd_size; /* only one record at a time */
  2678.       return &dir_static;
  2679. #endif /* VMS */
  2680.     }
  2681. }
  2682.  
  2683. #ifdef VMS
  2684. /* readdirver is just like readdir except it returns all versions of a file
  2685.    as separate entries.  */
  2686.  
  2687. /* ARGUSED */
  2688. struct direct *
  2689. readdirver (dirp)
  2690.      register DIR *dirp;    /* stream from opendir() */
  2691. {
  2692.   register struct dir$_name *dp; /* -> directory data */
  2693.   register struct dir$_version *dv; /* -> version data */
  2694.  
  2695.   if (dirp->dd_loc >= dirp->dd_size - sizeof (struct dir$_name))
  2696.     dirp->dd_loc = dirp->dd_size = 0;
  2697.  
  2698.   if (dirp->dd_size == 0     /* refill buffer */
  2699.       && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
  2700.     return 0;
  2701.  
  2702.   dp = (struct dir$_name *) dirp->dd_buf;
  2703.   if (dirp->dd_loc == 0)
  2704.     dirp->dd_loc = (dp->dir$b_namecount & 1) ? dp->dir$b_namecount + 1
  2705.            : dp->dir$b_namecount;
  2706.   dv = (struct dir$_version *) &dp->dir$t_name[dirp->dd_loc];
  2707.   strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount);
  2708.   sprintf (&dir_static.d_name[dp->dir$b_namecount], ";%d", dv->dir$w_version);
  2709.   dir_static.d_namlen = strlen (dir_static.d_name);
  2710.   dir_static.d_ino = dv->dir$w_fid_num;
  2711.   dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3
  2712.             + dir_static.d_namlen - dir_static.d_namlen % 4;
  2713.   dirp->dd_loc = ((char *) (++dv) - dp->dir$t_name);
  2714.   return &dir_static;
  2715. }
  2716.  
  2717. #endif /* VMS */
  2718.  
  2719. #endif /* NONSYSTEM_DIR_LIBRARY */
  2720.  
  2721. /* Functions for VMS */
  2722. #ifdef VMS
  2723. #include <pwd.h>
  2724. #include <acldef.h>
  2725. #include <chpdef.h>
  2726. #include <jpidef.h>
  2727.  
  2728. /* Return as a string the VMS error string pertaining to STATUS.
  2729.    Reuses the same static buffer each time it is called.  */
  2730.  
  2731. char *
  2732. vmserrstr (status)
  2733.      int status;        /* VMS status code */
  2734. {
  2735.   int bufadr[2];
  2736.   short len;
  2737.   static char buf[257];
  2738.  
  2739.   bufadr[0] = sizeof buf - 1;
  2740.   bufadr[1] = buf;
  2741.   if (! (SYS$GETMSG (status, &len, bufadr, 0x1, 0) & 1))
  2742.     return "untranslatable VMS error status";
  2743.   buf[len] = '\0';
  2744.   return buf;
  2745. }
  2746.  
  2747. #ifdef access
  2748. #undef access
  2749.   
  2750. /* The following is necessary because 'access' emulation by VMS C (2.0) does
  2751.  * not work correctly.  (It also doesn't work well in version 2.3.)
  2752.  */
  2753.  
  2754. #ifdef VMS4_4
  2755.  
  2756. #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
  2757.     { strlen(string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
  2758.  
  2759. typedef union {
  2760.     struct {
  2761.     unsigned short s_buflen;
  2762.     unsigned short s_code;
  2763.     char *s_bufadr;
  2764.     unsigned short *s_retlenadr;
  2765.     } s;
  2766.     int end;
  2767. } item;
  2768. #define buflen s.s_buflen
  2769. #define code s.s_code
  2770. #define bufadr s.s_bufadr
  2771. #define retlenadr s.s_retlenadr
  2772.  
  2773. #define R_OK 4    /* test for read permission */
  2774. #define W_OK 2    /* test for write permission */
  2775. #define X_OK 1    /* test for execute (search) permission */
  2776. #define F_OK 0    /* test for presence of file */
  2777.  
  2778. int
  2779. sys_access (path, mode)
  2780.      char *path;
  2781.      int mode;
  2782. {
  2783.   static char *user = NULL;
  2784.   char dir_fn[512];
  2785.  
  2786.   /* translate possible directory spec into .DIR file name, so brain-dead
  2787.    * access() can treat the directory like a file.  */
  2788.   if (directory_file_name (path, dir_fn))
  2789.     path = dir_fn;
  2790.   
  2791.   if (mode == F_OK)
  2792.     return access (path, mode);
  2793.   if (user == NULL && (user = getenv ("USER")) == NULL)
  2794.     return -1;
  2795.   {
  2796.     int stat;
  2797.     int flags;
  2798.     int acces;
  2799.     int dummy;
  2800.     item itemlst[3];
  2801.     DESCRIPTOR(path_desc, path);
  2802.     DESCRIPTOR(user_desc, user);
  2803.  
  2804.     flags = 0;
  2805.     acces = 0;
  2806.     if ((mode & X_OK) && ((stat = access(path, mode)) < 0 || mode == X_OK))
  2807.         return stat;
  2808.     if (mode & R_OK)
  2809.         acces |= CHP$M_READ;
  2810.     if (mode & W_OK)
  2811.         acces |= CHP$M_WRITE;
  2812.     itemlst[0].buflen = sizeof (int);
  2813.     itemlst[0].code = CHP$_FLAGS;
  2814.     itemlst[0].bufadr = &flags;
  2815.     itemlst[0].retlenadr = &dummy;
  2816.     itemlst[1].buflen = sizeof (int);
  2817.     itemlst[1].code = CHP$_ACCESS;
  2818.     itemlst[1].bufadr = &acces;
  2819.     itemlst[1].retlenadr = &dummy;
  2820.     itemlst[2].end = CHP$_END;
  2821.     stat = SYS$CHECK_ACCESS(&ACL$C_FILE, &path_desc, &user_desc, itemlst);
  2822.     return stat == SS$_NORMAL ? 0 : -1;
  2823.     }
  2824. }
  2825.  
  2826. #else /* not VMS4_4 */
  2827.  
  2828. #include <prvdef.h>
  2829. #define    ACE$M_WRITE    2
  2830. #define    ACE$C_KEYID    1
  2831.  
  2832. static unsigned short memid, grpid;
  2833. static unsigned int uic;
  2834.  
  2835. /* Called from init_sys_modes, so it happens not very often
  2836.    but at least each time Emacs is loaded.  */
  2837. sys_access_reinit ()
  2838. {
  2839.   uic = 0;
  2840. }
  2841.  
  2842. int
  2843. sys_access (filename, type)
  2844.      char * filename;
  2845.      int type;
  2846. {
  2847.   struct FAB fab;
  2848.   struct XABPRO xab;
  2849.   int status, prvmask[2], size, i, typecode, acl_controlled;
  2850.   unsigned int *aclptr, *aclend, aclbuf[60];
  2851.  
  2852.   /* Get UIC and GRP values for protection checking.  */
  2853.   if (uic == 0)
  2854.     {
  2855.       status = LIB$GETJPI (&JPI$_UIC, 0, 0, &uic, 0, 0);
  2856.       if (! (status & 1))
  2857.     return -1;
  2858.       memid = uic & 0xFFFF;
  2859.       grpid = uic >> 16;
  2860.     }
  2861.  
  2862.   if (type != 2)        /* not checking write access */
  2863.     return access (filename, type);
  2864.  
  2865.   /* Check write protection. */
  2866.     
  2867. #define    CHECKPRIV(bit)    (prvmask[bit / 32] & (1 << (bit % 32)))
  2868. #define    WRITEABLE(field)  (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
  2869.  
  2870.   /* Find privilege bits */
  2871.   status = sys$setprv (0, 0, 0, prvmask);
  2872.   if (! (status & 1))
  2873.     error ("Unable to find privileges: %s", vmserrstr (status));
  2874.   if (CHECKPRIV (PRV$V_BYPASS))
  2875.     return 0;            /* BYPASS enabled */
  2876.   fab = cc$rms_fab;
  2877.   fab.fab$b_fac = FAB$M_GET;
  2878.   fab.fab$l_fna = filename;
  2879.   fab.fab$b_fns = strlen (filename);
  2880.   fab.fab$l_xab = &xab;
  2881.   xab = cc$rms_xabpro;
  2882.   xab.xab$l_aclbuf = aclbuf;
  2883.   xab.xab$w_aclsiz = sizeof (aclbuf);
  2884.   status = sys$open (&fab, 0, 0);
  2885.   if (! (status & 1))
  2886.     return -1;
  2887.   sys$close (&fab, 0, 0);
  2888.   /* Check system access */
  2889.   if (CHECKPRIV (PRV$V_SYSPRV) && WRITEABLE (XAB$V_SYS))
  2890.     return 0;
  2891.   /* Check ACL entries, if any */
  2892.   acl_controlled = 0;
  2893.   if (xab.xab$w_acllen > 0)
  2894.     {
  2895.       aclptr = aclbuf;
  2896.       aclend = &aclbuf[xab.xab$w_acllen / 4];
  2897.       while (*aclptr && aclptr < aclend)
  2898.     {
  2899.       size = (*aclptr & 0xff) / 4;
  2900.       typecode = (*aclptr >> 8) & 0xff;
  2901.       if (typecode == ACE$C_KEYID)
  2902.         for (i = size - 1; i > 1; i--)
  2903.           if (aclptr[i] == uic)
  2904.         {
  2905.           acl_controlled = 1;
  2906.           if (aclptr[1] & ACE$M_WRITE)
  2907.             return 0;    /* Write access through ACL */
  2908.         }
  2909.       aclptr = &aclptr[size];
  2910.     }
  2911.       if (acl_controlled)    /* ACL specified, prohibits write access */
  2912.     return -1;
  2913.     }
  2914.   /* No ACL entries specified, check normal protection */
  2915.   if (WRITEABLE (XAB$V_WLD))    /* World writeable */
  2916.     return 0;
  2917.   if (WRITEABLE (XAB$V_GRP) &&
  2918.       (unsigned short) (xab.xab$l_uic >> 16) == grpid)
  2919.     return 0;            /* Group writeable */
  2920.   if (WRITEABLE (XAB$V_OWN) &&
  2921.       (xab.xab$l_uic & 0xFFFF) == memid)
  2922.     return 0;            /* Owner writeable */
  2923.  
  2924.   return -1;    /* Not writeable */
  2925. }
  2926. #endif /* not VMS4_4 */
  2927. #endif /* access */
  2928.   
  2929. static char vtbuf[NAM$C_MAXRSS+1];
  2930.  
  2931. /* translate a vms file spec to a unix path */
  2932. char *
  2933. sys_translate_vms (vfile)
  2934.      char * vfile;
  2935. {
  2936.   char * p;
  2937.   char * targ;
  2938.  
  2939.   if (!vfile)
  2940.     return 0;
  2941.  
  2942.   targ = vtbuf;
  2943.  
  2944.   /* leading device or logical name is a root directory */
  2945.   if (p = strchr (vfile, ':'))
  2946.     {
  2947.       *targ++ = '/';
  2948.       while (vfile < p)
  2949.     *targ++ = *vfile++;
  2950.       vfile++;
  2951.       *targ++ = '/';
  2952.     }
  2953.   p = vfile;
  2954.   if (*p == '[' || *p == '<')
  2955.     {
  2956.       while (*++vfile != *p + 2)
  2957.     switch (*vfile)
  2958.       {
  2959.       case '.':
  2960.         if (vfile[-1] == *p)
  2961.           *targ++ = '.';
  2962.         *targ++ = '/';
  2963.         break;
  2964.  
  2965.       case '-':
  2966.         *targ++ = '.';
  2967.         *targ++ = '.';
  2968.         break;
  2969.         
  2970.       default:
  2971.         *targ++ = *vfile;
  2972.         break;
  2973.       }
  2974.       vfile++;
  2975.       *targ++ = '/';
  2976.     }
  2977.   while (*vfile)
  2978.     *targ++ = *vfile++;
  2979.  
  2980.   return vtbuf;
  2981. }
  2982.  
  2983. static char utbuf[NAM$C_MAXRSS+1];
  2984.  
  2985. /* translate a unix path to a VMS file spec */
  2986. char *
  2987. sys_translate_unix (ufile)
  2988.      char * ufile;
  2989. {
  2990.   int slash_seen = 0;
  2991.   char *p;
  2992.   char * targ;
  2993.  
  2994.   if (!ufile)
  2995.     return 0;
  2996.  
  2997.   targ = utbuf;
  2998.  
  2999.   if (*ufile == '/')
  3000.     {
  3001.       ufile++;
  3002.     }
  3003.  
  3004.   while (*ufile)
  3005.     {
  3006.       switch (*ufile)
  3007.     {
  3008.     case '/':
  3009.       if (slash_seen)
  3010.         if (index (&ufile[1], '/'))
  3011.           *targ++ = '.';
  3012.         else
  3013.           *targ++ = ']';
  3014.       else
  3015.         {
  3016.           *targ++ = ':';
  3017.           if (index (&ufile[1], '/'))
  3018.         *targ++ = '[';
  3019.           slash_seen = 1;
  3020.         }
  3021.       break;
  3022.  
  3023.     case '.':
  3024.       if (strncmp (ufile, "./", 2) == 0)
  3025.         {
  3026.           if (!slash_seen)
  3027.         {
  3028.           *targ++ = '[';
  3029.           slash_seen = 1;
  3030.         }
  3031.           ufile++;        /* skip the dot */
  3032.           if (index (&ufile[1], '/'))
  3033.         *targ++ = '.';
  3034.           else
  3035.         *targ++ = ']';
  3036.         }
  3037.       else if (strncmp (ufile, "../", 3) == 0)
  3038.         {
  3039.           if (!slash_seen)
  3040.         {
  3041.           *targ++ = '[';
  3042.           slash_seen = 1;
  3043.         }
  3044.           *targ++ = '-';
  3045.           ufile += 2;    /* skip the dots */
  3046.           if (index (&ufile[1], '/'))
  3047.         *targ++ = '.';
  3048.           else
  3049.         *targ++ = ']';
  3050.         }
  3051.       else
  3052.         *targ++ = *ufile;
  3053.       break;
  3054.  
  3055.     default:
  3056.       *targ++ = *ufile;
  3057.       break;
  3058.     }
  3059.       ufile++;
  3060.     }
  3061.   *targ = '\0';
  3062.   
  3063.   return utbuf;
  3064. }
  3065.  
  3066. char *
  3067. getwd (pathname)
  3068.      char *pathname;
  3069. {
  3070.   char *ptr;
  3071.   strcpy (pathname, egetenv ("PATH"));
  3072.  
  3073.   ptr = pathname;
  3074.   while (*ptr)
  3075.     {
  3076.       if ('a' <= *ptr && *ptr <= 'z')
  3077.     *ptr -= 040;
  3078.       ptr++;
  3079.     }
  3080.   return pathname;
  3081. }
  3082.  
  3083. getppid ()
  3084. {
  3085.   long item_code = JPI$_OWNER;
  3086.   unsigned long parent_id;
  3087.   int status;
  3088.  
  3089.   if (((status = LIB$GETJPI (&item_code, 0, 0, &parent_id)) & 1) == 0)
  3090.     {
  3091.       errno = EVMSERR;
  3092.       vaxc$errno = status;
  3093.       return -1;
  3094.     }
  3095.   return parent_id;
  3096. }
  3097.  
  3098. #undef getuid
  3099. unsigned
  3100. sys_getuid ()
  3101. {
  3102.   return (getgid () << 16) | getuid ();
  3103. }
  3104.  
  3105. int
  3106. sys_read (fildes, buf, nbyte)
  3107.      int fildes;
  3108.      char *buf;
  3109.      unsigned int nbyte;
  3110. {
  3111.   return read (fildes, buf, (nbyte < MAXIOSIZE ? nbyte : MAXIOSIZE));
  3112. }
  3113.  
  3114. #if 0
  3115. int
  3116. sys_write (fildes, buf, nbyte)
  3117.      int fildes;
  3118.      char *buf;
  3119.      unsigned int nbyte;
  3120. {
  3121.   register int nwrote, rtnval = 0;
  3122.  
  3123.   while (nbyte > MAXIOSIZE && (nwrote = write (fildes, buf, MAXIOSIZE)) > 0) {
  3124.     nbyte -= nwrote;
  3125.     buf += nwrote;
  3126.     rtnval += nwrote;
  3127.   }
  3128.   if (nwrote < 0)
  3129.     return rtnval ? rtnval : -1;
  3130.   if ((nwrote = write (fildes, buf, nbyte)) < 0)
  3131.     return rtnval ? rtnval : -1;
  3132.   return (rtnval + nwrote);
  3133. }
  3134. #endif /* 0 */
  3135.  
  3136. /*
  3137.  *    VAX/VMS VAX C RTL really loses. It insists that records
  3138.  *      end with a newline (carriage return) character, and if they
  3139.  *    don't it adds one (nice of it isn't it!)
  3140.  *
  3141.  *    Thus we do this stupidity below.
  3142.  */
  3143.  
  3144. int
  3145. sys_write (fildes, buf, nbytes)
  3146.      int fildes;
  3147.      char *buf;
  3148.      unsigned int nbytes;
  3149. {
  3150.   register char *p;
  3151.   register char *e;
  3152.   int retval, sum;
  3153.   p = buf;
  3154.   sum = 0;
  3155.   while (nbytes > 0)
  3156.     {
  3157.       e =  p + min (MAXIOSIZE, nbytes) - 1;
  3158.       while (*e != '\n' && e > p) e--;
  3159.       if (p == e)        /* Ok.. so here we add a newline... sigh. */
  3160.     e = p + min (MAXIOSIZE, nbytes) - 1;
  3161.       retval = write (fildes, p, e - p + 1);
  3162.       if (retval != e - p + 1) return -1;
  3163.       p = e + 1;
  3164.       sum = sum + retval;
  3165.       nbytes -= retval;
  3166.     }
  3167.   return sum;
  3168. }
  3169.  
  3170. /* Create file NEW copying its attributes from file OLD.  If
  3171.    OLD is 0 or does not exist, create based on the value of
  3172.    vms_stmlf_recfm. */
  3173.  
  3174. int
  3175. creat_copy_attrs (old, new)
  3176.      char *old, *new;
  3177. {
  3178.   struct FAB fab = cc$rms_fab;
  3179.   struct XABPRO xabpro;
  3180.   char aclbuf[256];    /* Choice of size is arbitrary.  See below. */
  3181.   extern int vms_stmlf_recfm;
  3182.  
  3183.   if (old)
  3184.     {
  3185.       fab.fab$b_fac = FAB$M_GET;
  3186.       fab.fab$l_fna = old;
  3187.       fab.fab$b_fns = strlen (old);
  3188.       fab.fab$l_xab = &xabpro;
  3189.       xabpro = cc$rms_xabpro;
  3190.       xabpro.xab$l_aclbuf = aclbuf;
  3191.       xabpro.xab$w_aclsiz = sizeof aclbuf;
  3192.       /* Call $OPEN to fill in the fab & xabpro fields. */
  3193.       if (sys$open (&fab, 0, 0) & 1)
  3194.     {
  3195.       sys$close (&fab, 0, 0);
  3196.       fab.fab$l_alq = 0;    /* zero the allocation quantity */
  3197.       if (xabpro.xab$w_acllen > 0)
  3198.         {
  3199.           if (xabpro.xab$w_acllen > sizeof aclbuf)
  3200.         /* If the acl buffer was too short, redo open with longer one.
  3201.            Wouldn't need to do this if there were some system imposed
  3202.            limit on the size of an ACL, but I can't find any such. */
  3203.         {
  3204.           xabpro.xab$l_aclbuf = alloca (xabpro.xab$w_acllen);
  3205.           xabpro.xab$w_aclsiz = xabpro.xab$w_acllen;
  3206.           if (sys$open (&fab, 0, 0) & 1)
  3207.             sys$close (&fab, 0, 0);
  3208.           else
  3209.             old = 0;
  3210.         }
  3211.         }
  3212.       else
  3213.         xabpro.xab$l_aclbuf = 0;
  3214.     }
  3215.       else
  3216.     old = 0;
  3217.     }
  3218.   fab.fab$l_fna = new;
  3219.   fab.fab$b_fns = strlen (new);
  3220.   if (!old)
  3221.     {
  3222.       fab.fab$l_xab = 0;
  3223.       fab.fab$b_rfm = vms_stmlf_recfm ? FAB$C_STMLF : FAB$C_VAR;
  3224.       fab.fab$b_rat = FAB$M_CR;
  3225.     }
  3226.   /* Create the new file with either default attrs or attrs copied
  3227.      from old file. */
  3228.   if (!(SYS$CREATE (&fab, 0, 0) & 1))
  3229.     return -1;
  3230.   sys$close (&fab, 0, 0);
  3231.   /* As this is a "replacement" for creat, return a file descriptor
  3232.      opened for writing. */
  3233.   return open (new, O_WRONLY);
  3234. }
  3235.  
  3236. #ifdef creat
  3237. #undef creat
  3238. #include <varargs.h>
  3239.  
  3240. sys_creat (va_alist)
  3241.      va_dcl
  3242. {
  3243.   va_list list_incrementor;
  3244.   char *name;
  3245.   int mode;
  3246.   int rfd;            /* related file descriptor */
  3247.   int fd;            /* Our new file descriptor */
  3248.   int count;
  3249.   struct stat st_buf;
  3250.   char rfm[12];
  3251.   char rat[15];
  3252.   char mrs[13];
  3253.   char fsz[13];
  3254.   extern int vms_stmlf_recfm;
  3255.  
  3256.   va_count (count);
  3257.   va_start (list_incrementor);
  3258.   name = va_arg (list_incrementor, char *);
  3259.   mode = va_arg (list_incrementor, int);
  3260.   if (count > 2)
  3261.     rfd = va_arg (list_incrementor, int);
  3262.   va_end (list_incrementor);
  3263.   if (count > 2)
  3264.     {
  3265.       /* Use information from the related file descriptor to set record
  3266.      format of the newly created file. */
  3267.       fstat (rfd, &st_buf);
  3268.       switch (st_buf.st_fab_rfm)
  3269.     {
  3270.     case FAB$C_FIX:
  3271.       strcpy (rfm, "rfm = fix");
  3272.       sprintf (mrs, "mrs = %d", st_buf.st_fab_mrs);
  3273.       strcpy (rat, "rat = ");
  3274.       if (st_buf.st_fab_rat & FAB$M_CR)
  3275.         strcat (rat, "cr");
  3276.       else if (st_buf.st_fab_rat & FAB$M_FTN)
  3277.         strcat (rat, "ftn");
  3278.       else if (st_buf.st_fab_rat & FAB$M_PRN)
  3279.         strcat (rat, "prn");
  3280.       if (st_buf.st_fab_rat & FAB$M_BLK)
  3281.         if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
  3282.           strcat (rat, ", blk");
  3283.         else
  3284.           strcat (rat, "blk");
  3285.       return creat (name, 0, rfm, rat, mrs);
  3286.  
  3287.     case FAB$C_VFC:
  3288.       strcpy (rfm, "rfm = vfc");
  3289.       sprintf (fsz, "fsz = %d", st_buf.st_fab_fsz);
  3290.       strcpy (rat, "rat = ");
  3291.       if (st_buf.st_fab_rat & FAB$M_CR)
  3292.         strcat (rat, "cr");
  3293.       else if (st_buf.st_fab_rat & FAB$M_FTN)
  3294.         strcat (rat, "ftn");
  3295.       else if (st_buf.st_fab_rat & FAB$M_PRN)
  3296.         strcat (rat, "prn");
  3297.       if (st_buf.st_fab_rat & FAB$M_BLK)
  3298.         if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
  3299.           strcat (rat, ", blk");
  3300.         else
  3301.           strcat (rat, "blk");
  3302.       return creat (name, 0, rfm, rat, fsz);
  3303.  
  3304.     case FAB$C_STM:
  3305.       strcpy (rfm, "rfm = stm");
  3306.       break;
  3307.  
  3308.     case FAB$C_STMCR:
  3309.       strcpy (rfm, "rfm = stmcr");
  3310.       break;
  3311.  
  3312.     case FAB$C_STMLF:
  3313.       strcpy (rfm, "rfm = stmlf");
  3314.       break;
  3315.  
  3316.     case FAB$C_UDF:
  3317.       strcpy (rfm, "rfm = udf");
  3318.       break;
  3319.  
  3320.     case FAB$C_VAR:
  3321.       strcpy (rfm, "rfm = var");
  3322.       break;
  3323.     }
  3324.       strcpy (rat, "rat = ");
  3325.       if (st_buf.st_fab_rat & FAB$M_CR)
  3326.     strcat (rat, "cr");
  3327.       else if (st_buf.st_fab_rat & FAB$M_FTN)
  3328.     strcat (rat, "ftn");
  3329.       else if (st_buf.st_fab_rat & FAB$M_PRN)
  3330.     strcat (rat, "prn");
  3331.       if (st_buf.st_fab_rat & FAB$M_BLK)
  3332.     if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN))
  3333.       strcat (rat, ", blk");
  3334.     else
  3335.       strcat (rat, "blk");
  3336.     }
  3337.   else
  3338.     {
  3339.       strcpy (rfm, vms_stmlf_recfm ? "rfm = stmlf" : "rfm=var");
  3340.       strcpy (rat, "rat=cr");
  3341.     }
  3342.   /* Until the VAX C RTL fixes the many bugs with modes, always use
  3343.      mode 0 to get the user's default protection. */
  3344.   fd = creat (name, 0, rfm, rat);
  3345.   if (fd < 0 && errno == EEXIST)
  3346.     {
  3347.       if (unlink (name) < 0)
  3348.     report_file_error ("delete", build_string (name));
  3349.       fd = creat (name, 0, rfm, rat);
  3350.     }
  3351.   return fd;
  3352. }
  3353. #endif /* creat */
  3354.  
  3355. /* fwrite to stdout is S L O W.  Speed it up by using fputc...*/
  3356. sys_fwrite (ptr, size, num, fp)
  3357.      register char * ptr;
  3358.      FILE * fp;
  3359. {
  3360.   register int tot = num * size;
  3361.  
  3362.   while (tot--)
  3363.     fputc (*ptr++, fp);
  3364. }
  3365.  
  3366. /*
  3367.  * The VMS C library routine creat() actually creates a new version of an
  3368.  * existing file rather than truncating the old version.  There are times
  3369.  * when this is not the desired behavior, for instance, when writing an
  3370.  * auto save file (you only want one version), or when you don't have
  3371.  * write permission in the directory containing the file (but the file
  3372.  * itself is writable).  Hence this routine, which is equivalent to 
  3373.  * "close (creat (fn, 0));" on Unix if fn already exists.
  3374.  */
  3375. int
  3376. vms_truncate (fn)
  3377.      char *fn;
  3378. {
  3379.   struct FAB xfab = cc$rms_fab;
  3380.   struct RAB xrab = cc$rms_rab;
  3381.   int status;
  3382.  
  3383.   xfab.fab$l_fop = FAB$M_TEF;    /* free allocated but unused blocks on close */
  3384.   xfab.fab$b_fac = FAB$M_TRN | FAB$M_GET; /* allow truncate and get access */
  3385.   xfab.fab$b_shr = FAB$M_NIL;    /* allow no sharing - file must be locked */
  3386.   xfab.fab$l_fna = fn;
  3387.   xfab.fab$b_fns = strlen (fn);
  3388.   xfab.fab$l_dna = ";0";    /* default to latest version of the file */
  3389.   xfab.fab$b_dns = 2;
  3390.   xrab.rab$l_fab = &xfab;
  3391.  
  3392.   /* This gibberish opens the file, positions to the first record, and
  3393.      deletes all records from there until the end of file. */
  3394.   if ((sys$open (&xfab) & 01) == 01)
  3395.     {
  3396.       if ((sys$connect (&xrab) & 01) == 01 &&
  3397.       (sys$find (&xrab) & 01) == 01 &&
  3398.       (sys$truncate (&xrab) & 01) == 01)
  3399.     status = 0;
  3400.       else
  3401.     status = -1;
  3402.     }
  3403.   else
  3404.     status = -1;
  3405.   sys$close (&xfab);
  3406.   return status;
  3407. }
  3408.  
  3409. /* Define this symbol to actually read SYSUAF.DAT.  This requires either
  3410.    SYSPRV or a readable SYSUAF.DAT. */
  3411.  
  3412. #ifdef READ_SYSUAF
  3413. /*
  3414.  * getuaf.c
  3415.  *
  3416.  * Routine to read the VMS User Authorization File and return
  3417.  * a specific user's record.
  3418.  */
  3419.  
  3420. static struct UAF retuaf;
  3421.  
  3422. struct UAF *
  3423. get_uaf_name(uname)
  3424.      char * uname;
  3425. {
  3426.   register status;
  3427.   struct FAB uaf_fab;
  3428.   struct RAB uaf_rab;
  3429.   
  3430.   uaf_fab = cc$rms_fab;
  3431.   uaf_rab = cc$rms_rab;
  3432.   /* initialize fab fields */
  3433.   uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
  3434.   uaf_fab.fab$b_fns = 21;
  3435.   uaf_fab.fab$b_fac = FAB$M_GET;
  3436.   uaf_fab.fab$b_org = FAB$C_IDX;
  3437.   uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
  3438.   /* initialize rab fields */
  3439.   uaf_rab.rab$l_fab = &uaf_fab;
  3440.   /* open the User Authorization File */
  3441.   status = sys$open(&uaf_fab);
  3442.   if (!(status&1))
  3443.     {
  3444.       errno = EVMSERR;
  3445.       vaxc$errno = status;
  3446.       return 0;
  3447.     }
  3448.   status = sys$connect(&uaf_rab);
  3449.   if (!(status&1))
  3450.     {
  3451.       errno = EVMSERR;
  3452.       vaxc$errno = status;
  3453.       return 0;
  3454.     }
  3455.   /* read the requested record - index is in uname */
  3456.   uaf_rab.rab$l_kbf = uname;
  3457.   uaf_rab.rab$b_ksz = strlen (uname);
  3458.   uaf_rab.rab$b_rac = RAB$C_KEY;
  3459.   uaf_rab.rab$l_ubf = (char *)&retuaf;
  3460.   uaf_rab.rab$w_usz = sizeof retuaf;
  3461.   status = sys$get(&uaf_rab);
  3462.   if (!(status&1))
  3463.     {
  3464.       errno = EVMSERR;
  3465.       vaxc$errno = status;
  3466.       return 0;
  3467.     }
  3468.   /* close the User Authorization File */
  3469.   status = sys$disconnect(&uaf_rab);
  3470.   if (!(status&1))
  3471.     {
  3472.       errno = EVMSERR;
  3473.       vaxc$errno = status;
  3474.       return 0;
  3475.     }
  3476.   status = sys$close(&uaf_fab);
  3477.   if (!(status&1))
  3478.     {
  3479.       errno = EVMSERR;
  3480.       vaxc$errno = status;
  3481.       return 0;
  3482.     }
  3483.   return &retuaf;
  3484. }
  3485.  
  3486. struct UAF *
  3487. get_uaf_uic(uic)
  3488.      unsigned long uic;
  3489. {
  3490.   register status;
  3491.   struct FAB uaf_fab;
  3492.   struct RAB uaf_rab;
  3493.   
  3494.   uaf_fab = cc$rms_fab;
  3495.   uaf_rab = cc$rms_rab;
  3496.   /* initialize fab fields */
  3497.   uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT";
  3498.   uaf_fab.fab$b_fns = 21;
  3499.   uaf_fab.fab$b_fac = FAB$M_GET;
  3500.   uaf_fab.fab$b_org = FAB$C_IDX;
  3501.   uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL;
  3502.   /* initialize rab fields */
  3503.   uaf_rab.rab$l_fab = &uaf_fab;
  3504.   /* open the User Authorization File */
  3505.   status = sys$open(&uaf_fab);
  3506.   if (!(status&1))
  3507.     {
  3508.       errno = EVMSERR;
  3509.       vaxc$errno = status;
  3510.       return 0;
  3511.     }
  3512.   status = sys$connect(&uaf_rab);
  3513.   if (!(status&1))
  3514.     {
  3515.       errno = EVMSERR;
  3516.       vaxc$errno = status;
  3517.       return 0;
  3518.     }
  3519.   /* read the requested record - index is in uic */
  3520.   uaf_rab.rab$b_krf = 1;    /* 1st alternate key */
  3521.   uaf_rab.rab$l_kbf = (char *) &uic;
  3522.   uaf_rab.rab$b_ksz = sizeof uic;
  3523.   uaf_rab.rab$b_rac = RAB$C_KEY;
  3524.   uaf_rab.rab$l_ubf = (char *)&retuaf;
  3525.   uaf_rab.rab$w_usz = sizeof retuaf;
  3526.   status = sys$get(&uaf_rab);
  3527.   if (!(status&1))
  3528.     {
  3529.       errno = EVMSERR;
  3530.       vaxc$errno = status;
  3531.       return 0;
  3532.     }
  3533.   /* close the User Authorization File */
  3534.   status = sys$disconnect(&uaf_rab);
  3535.   if (!(status&1))
  3536.     {
  3537.       errno = EVMSERR;
  3538.       vaxc$errno = status;
  3539.       return 0;
  3540.     }
  3541.   status = sys$close(&uaf_fab);
  3542.   if (!(status&1))
  3543.     {
  3544.       errno = EVMSERR;
  3545.       vaxc$errno = status;
  3546.       return 0;
  3547.     }
  3548.   return &retuaf;
  3549. }
  3550.  
  3551. static struct passwd retpw;
  3552.  
  3553. struct passwd *
  3554. cnv_uaf_pw (up)
  3555.      struct UAF * up;
  3556. {
  3557.   char * ptr;
  3558.  
  3559.   /* copy these out first because if the username is 32 chars, the next
  3560.      section will overwrite the first byte of the UIC */
  3561.   retpw.pw_uid = up->uaf$w_mem;
  3562.   retpw.pw_gid = up->uaf$w_grp;
  3563.  
  3564.   /* I suppose this is not the best sytle, to possibly overwrite one
  3565.      byte beyond the end of the field, but what the heck... */
  3566.   ptr = &up->uaf$t_username[UAF$S_USERNAME];
  3567.   while (ptr[-1] == ' ')
  3568.     ptr--;
  3569.   *ptr = '\0';
  3570.   strcpy (retpw.pw_name, up->uaf$t_username);
  3571.  
  3572.   /* the rest of these are counted ascii strings */
  3573.   strncpy (retpw.pw_gecos, &up->uaf$t_owner[1], up->uaf$t_owner[0]);
  3574.   retpw.pw_gecos[up->uaf$t_owner[0]] = '\0';
  3575.   strncpy (retpw.pw_dir, &up->uaf$t_defdev[1], up->uaf$t_defdev[0]);
  3576.   retpw.pw_dir[up->uaf$t_defdev[0]] = '\0';
  3577.   strncat (retpw.pw_dir, &up->uaf$t_defdir[1], up->uaf$t_defdir[0]);
  3578.   retpw.pw_dir[up->uaf$t_defdev[0] + up->uaf$t_defdir[0]] = '\0';
  3579.   strncpy (retpw.pw_shell, &up->uaf$t_defcli[1], up->uaf$t_defcli[0]);
  3580.   retpw.pw_shell[up->uaf$t_defcli[0]] = '\0';
  3581.  
  3582.   return &retpw;
  3583. }
  3584. #else /* not READ_SYSUAF */
  3585. static struct passwd retpw;
  3586. #endif /* not READ_SYSUAF */
  3587.  
  3588. struct passwd *
  3589. getpwnam (name)
  3590.      char * name;
  3591. {
  3592. #ifdef READ_SYSUAF
  3593.   struct UAF *up;
  3594. #else
  3595.   char * user;
  3596.   char * dir;
  3597.   char * full;
  3598. #endif /* READ_SYSUAF */
  3599.   char *ptr = name;
  3600.  
  3601.   while (*ptr)
  3602.     {
  3603.       if ('a' <= *ptr && *ptr <= 'z')
  3604.     *ptr -= 040;
  3605.       ptr++;
  3606.     }
  3607. #ifdef READ_SYSUAF
  3608.   if (!(up = get_uaf_name (name)))
  3609.     return 0;
  3610.   return cnv_uaf_pw (up);
  3611. #else
  3612.   if (strcmp (name, getenv ("USER")) == 0)
  3613.     {
  3614.       retpw.pw_uid = getuid ();
  3615.       retpw.pw_gid = getgid ();
  3616.       strcpy (retpw.pw_name, name);
  3617.       if (full = egetenv ("FULLNAME"))
  3618.     strcpy (retpw.pw_gecos, full);
  3619.       else
  3620.     *retpw.pw_gecos = '\0';
  3621.       strcpy (retpw.pw_dir, egetenv ("HOME"));
  3622.       *retpw.pw_shell = '\0';
  3623.       return &retpw;
  3624.     }
  3625.   else
  3626.     return 0;
  3627. #endif /* not READ_SYSUAF */
  3628. }
  3629.  
  3630. struct passwd *
  3631. getpwuid (uid)
  3632.      unsigned long uid;
  3633. {
  3634. #ifdef READ_SYSUAF
  3635.   struct UAF * up;
  3636.  
  3637.   if (!(up = get_uaf_uic (uid)))
  3638.     return 0;
  3639.   return cnv_uaf_pw (up);
  3640. #else
  3641.   if (uid == sys_getuid ())
  3642.     return getpwnam (egetenv ("USER"));
  3643.   else
  3644.     return 0;
  3645. #endif /* not READ_SYSUAF */
  3646. }
  3647.  
  3648. /* return total address space available to the current process.  This is
  3649.    the sum of the current p0 size, p1 size and free page table entries
  3650.    available. */
  3651. vlimit ()
  3652. {
  3653.   int item_code;
  3654.   unsigned long free_pages;
  3655.   unsigned long frep0va;
  3656.   unsigned long frep1va;
  3657.   register status;
  3658.  
  3659.   item_code = JPI$_FREPTECNT;
  3660.   if (((status = LIB$GETJPI (&item_code, 0, 0, &free_pages)) & 1) == 0)
  3661.     {
  3662.       errno = EVMSERR;
  3663.       vaxc$errno = status;
  3664.       return -1;
  3665.     }
  3666.   free_pages *= 512;
  3667.  
  3668.   item_code = JPI$_FREP0VA;
  3669.   if (((status = LIB$GETJPI (&item_code, 0, 0, &frep0va)) & 1) == 0)
  3670.     {
  3671.       errno = EVMSERR;
  3672.       vaxc$errno = status;
  3673.       return -1;
  3674.     }
  3675.   item_code = JPI$_FREP1VA;
  3676.   if (((status = LIB$GETJPI (&item_code, 0, 0, &frep1va)) & 1) == 0)
  3677.     {
  3678.       errno = EVMSERR;
  3679.       vaxc$errno = status;
  3680.       return -1;
  3681.     }
  3682.  
  3683.   return free_pages + frep0va + (0x7fffffff - frep1va);
  3684. }
  3685.  
  3686. define_logical_name (varname, string)
  3687.      char *varname;
  3688.      char *string;
  3689. {
  3690.   struct dsc$descriptor_s strdsc =
  3691.     {strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string};
  3692.   struct dsc$descriptor_s envdsc =
  3693.     {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname};
  3694.   struct dsc$descriptor_s lnmdsc =
  3695.     {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"};
  3696.  
  3697.   return LIB$SET_LOGICAL (&envdsc, &strdsc, &lnmdsc, 0, 0);
  3698. }
  3699.  
  3700. delete_logical_name (varname)
  3701.      char *varname;
  3702. {
  3703.   struct dsc$descriptor_s envdsc =
  3704.     {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname};
  3705.   struct dsc$descriptor_s lnmdsc =
  3706.     {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"};
  3707.  
  3708.   return LIB$DELETE_LOGICAL (&envdsc, &lnmdsc);
  3709. }
  3710.  
  3711. ulimit()
  3712. {}
  3713.  
  3714. setpriority()
  3715. {}
  3716.  
  3717. setpgrp()
  3718. {}
  3719.  
  3720. execvp()
  3721. {
  3722.   error ("execvp system call not implemented");
  3723. }
  3724.  
  3725. int
  3726. rename (from, to)
  3727.      char *from, *to;
  3728. {
  3729.   int status;
  3730.   struct FAB from_fab = cc$rms_fab, to_fab = cc$rms_fab;
  3731.   struct NAM from_nam = cc$rms_nam, to_nam = cc$rms_nam;
  3732.   char from_esn[NAM$C_MAXRSS];
  3733.   char to_esn[NAM$C_MAXRSS];
  3734.  
  3735.   from_fab.fab$l_fna = from;
  3736.   from_fab.fab$b_fns = strlen (from);
  3737.   from_fab.fab$l_nam = &from_nam;
  3738.   from_fab.fab$l_fop = FAB$M_NAM;
  3739.  
  3740.   from_nam.nam$l_esa = from_esn;
  3741.   from_nam.nam$b_ess = sizeof from_esn;
  3742.  
  3743.   to_fab.fab$l_fna = to;
  3744.   to_fab.fab$b_fns = strlen (to);
  3745.   to_fab.fab$l_nam = &to_nam;
  3746.   to_fab.fab$l_fop = FAB$M_NAM;
  3747.  
  3748.   to_nam.nam$l_esa = to_esn;
  3749.   to_nam.nam$b_ess = sizeof to_esn;
  3750.  
  3751.   status = SYS$RENAME (&from_fab, 0, 0, &to_fab);
  3752.  
  3753.   if (status & 1)
  3754.     return 0;
  3755.   else
  3756.     {
  3757.       if (status == RMS$_DEV)
  3758.     errno = EXDEV;
  3759.       else
  3760.     errno = EVMSERR;
  3761.       vaxc$errno = status;
  3762.       return -1;
  3763.     }
  3764. }
  3765.  
  3766. link (file, new)
  3767.      char * file, * new;
  3768. {
  3769.   register status;
  3770.   struct FAB fab;
  3771.   struct NAM nam;
  3772.   unsigned short fid[3];
  3773.   char esa[NAM$C_MAXRSS];
  3774.  
  3775.   fab = cc$rms_fab;
  3776.   fab.fab$l_fop = FAB$M_OFP;
  3777.   fab.fab$l_fna = file;
  3778.   fab.fab$b_fns = strlen (file);
  3779.   fab.fab$l_nam = &nam;
  3780.  
  3781.   nam = cc$rms_nam;
  3782.   nam.nam$l_esa = esa;
  3783.   nam.nam$b_ess = NAM$C_MAXRSS;
  3784.  
  3785.   status = SYS$PARSE (&fab);
  3786.   if ((status & 1) == 0)
  3787.     {
  3788.       errno = EVMSERR;
  3789.       vaxc$errno = status;
  3790.       return -1;
  3791.     }
  3792.   status = SYS$SEARCH (&fab);
  3793.   if ((status & 1) == 0)
  3794.     {
  3795.       errno = EVMSERR;
  3796.       vaxc$errno = status;
  3797.       return -1;
  3798.     }
  3799.  
  3800.   fid[0] = nam.nam$w_fid[0];
  3801.   fid[1] = nam.nam$w_fid[1];
  3802.   fid[2] = nam.nam$w_fid[2];
  3803.  
  3804.   fab.fab$l_fna = new;
  3805.   fab.fab$b_fns = strlen (new);
  3806.  
  3807.   status = SYS$PARSE (&fab);
  3808.   if ((status & 1) == 0)
  3809.     {
  3810.       errno = EVMSERR;
  3811.       vaxc$errno = status;
  3812.       return -1;
  3813.     }
  3814.  
  3815.   nam.nam$w_fid[0] = fid[0];
  3816.   nam.nam$w_fid[1] = fid[1];
  3817.   nam.nam$w_fid[2] = fid[2];
  3818.  
  3819.   nam.nam$l_esa = nam.nam$l_name;
  3820.   nam.nam$b_esl = nam.nam$b_name + nam.nam$b_type + nam.nam$b_ver;
  3821.  
  3822.   status = SYS$ENTER (&fab);
  3823.   if ((status & 1) == 0)
  3824.     {
  3825.       errno = EVMSERR;
  3826.       vaxc$errno = status;
  3827.       return -1;
  3828.     }
  3829.  
  3830.   return 0;
  3831. }
  3832.  
  3833. croak (badfunc)
  3834.      char *badfunc;
  3835. {
  3836.   printf ("%s not yet implemented\r\n", badfunc);
  3837.   reset_sys_modes ();
  3838.   exit (1);
  3839. }
  3840.  
  3841. long
  3842. random ()
  3843. {
  3844.   /* Arrange to return a range centered on zero.  */
  3845.   return rand () - (1 << 30);
  3846. }
  3847.  
  3848. srandom (seed)
  3849. {
  3850.   srand (seed);
  3851. }
  3852. #endif /* VMS */
  3853.  
  3854. #ifdef AIX
  3855.  
  3856. /* Called from init_sys_modes.  */
  3857. hft_init ()
  3858. {
  3859.   /* If we're not on an HFT we shouldn't do any of this.  We determine
  3860.      if we are on an HFT by trying to get an HFT error code.  If this
  3861.      call fails, we're not on an HFT. */ 
  3862. #ifdef IBMR2AIX
  3863.   if (ioctl (0, HFQERROR, 0) < 0)
  3864.     return;
  3865. #else /* not IBMR2AIX */
  3866.   if (ioctl (0, HFQEIO, 0) < 0)
  3867.     return;
  3868. #endif /* not IBMR2AIX */
  3869.  
  3870.   /* On AIX the default hft keyboard mapping uses backspace rather than delete
  3871.      as the rubout key's ASCII code.  Here this is changed.  The bug is that
  3872.      there's no way to determine the old mapping, so in reset_sys_modes
  3873.      we need to assume that the normal map had been present.  Of course, this
  3874.      code also doesn't help if on a terminal emulator which doesn't understand
  3875.      HFT VTD's. */
  3876.   {
  3877.     struct hfbuf buf;
  3878.     struct hfkeymap keymap;
  3879.  
  3880.     buf.hf_bufp = (char *)&keymap;
  3881.     buf.hf_buflen = sizeof (keymap);
  3882.     keymap.hf_nkeys = 2;
  3883.     keymap.hfkey[0].hf_kpos = 15;
  3884.     keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
  3885. #ifdef IBMR2AIX
  3886.     keymap.hfkey[0].hf_keyidh = '<';
  3887. #else /* not IBMR2AIX */
  3888.     keymap.hfkey[0].hf_page = '<';
  3889. #endif /* not IBMR2AIX */
  3890.     keymap.hfkey[0].hf_char = 127;
  3891.     keymap.hfkey[1].hf_kpos = 15;
  3892.     keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
  3893. #ifdef IBMR2AIX
  3894.     keymap.hfkey[1].hf_keyidh = '<';
  3895. #else /* not IBMR2AIX */
  3896.     keymap.hfkey[1].hf_page = '<';
  3897. #endif /* not IBMR2AIX */
  3898.     keymap.hfkey[1].hf_char = 127;
  3899.     hftctl (0, HFSKBD, &buf);
  3900.   }
  3901.   /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
  3902.      at times. */
  3903.   line_ins_del_ok = char_ins_del_ok = 0;
  3904. }
  3905.  
  3906. /* Reset the rubout key to backspace. */
  3907.  
  3908. hft_reset ()
  3909. {
  3910.   struct hfbuf buf;
  3911.   struct hfkeymap keymap;
  3912.  
  3913. #ifdef IBMR2AIX
  3914.   if (ioctl (0, HFQERROR, 0) < 0)
  3915.     return;
  3916. #else /* not IBMR2AIX */
  3917.   if (ioctl (0, HFQEIO, 0) < 0)
  3918.     return;
  3919. #endif /* not IBMR2AIX */
  3920.  
  3921.   buf.hf_bufp = (char *)&keymap;
  3922.   buf.hf_buflen = sizeof(keymap);
  3923.   keymap.hf_nkeys = 2;
  3924.   keymap.hfkey[0].hf_kpos = 15;
  3925.   keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
  3926. #ifdef IBMR2AIX
  3927.   keymap.hfkey[0].hf_keyidh = '<';
  3928. #else /* not IBMR2AIX */
  3929.   keymap.hfkey[0].hf_page = '<';
  3930. #endif /* not IBMR2AIX */
  3931.   keymap.hfkey[0].hf_char = 8;
  3932.   keymap.hfkey[1].hf_kpos = 15;
  3933.   keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
  3934. #ifdef IBMR2AIX
  3935.   keymap.hfkey[1].hf_keyidh = '<';
  3936. #else /* not IBMR2AIX */
  3937.   keymap.hfkey[1].hf_page = '<';
  3938. #endif /* not IBMR2AIX */
  3939.   keymap.hfkey[1].hf_char = 8;
  3940.   hftctl (0, HFSKBD, &buf);
  3941. }
  3942.  
  3943. #endif /* AIX */
  3944.  
  3945. /**
  3946.  **  (sjk)++ set default unixmode and default stack.
  3947.  **/
  3948.  
  3949. #ifdef atarist
  3950. #ifndef __MINT__
  3951. static char    __default_unixmode[16] = "/.,rCLAHdb\0\0\0\0\0";
  3952. extern char *_default_unixmode = (char *)__default_unixmode;
  3953. #endif /* __MINT__ */
  3954. extern long _initial_stack = 512 * 1024L;
  3955.  
  3956. #ifndef __MINT__
  3957. DEFUN ("st-set-unixmode", Fst_set_unixmode, Sst_set_unixmode, 1, 1,
  3958.   "sNew UNIXMODE setting: ",
  3959.   "Set the UNIXMODE defaults.\n\
  3960. This string describes how filenames are changed by emacs to match\n\
  3961. the standards of the TOS filesystem. The supported flags are:\n\
  3962.  b\tUse binary mode when opening file streams (no CR, only LF).\n\
  3963.  c\tAssume case is already significant to the operating system.\n\
  3964.  d\tAllow special file names like /dev/console.\n\
  3965.  rX\tFilenames starting with '/' are rooted from drive X:.\n\
  3966.  u\tAssume the OS allows unlimited length file names already.\n\
  3967.  x\tRecognize executable files by their magic number.\n\
  3968.  /\tTranslate the directory seperator '/' in filenames to '\\'.\n\
  3969.  .x\tTranslate extra dots and other non-file chars to 'x'.\n\
  3970.  L\tSwitch on processing of symbolic links.\n\
  3971. The following flags are meaningful only if 'L' is present.\n\
  3972.  A\tSwitch on automatic link generation for changed filenames.\n\
  3973.  H\tHide the special file \".dir\" from directory searches.")
  3974.   (mode)
  3975.     Lisp_Object mode;
  3976. {
  3977.   CHECK_STRING (mode, 0);
  3978.   _set_unixmode (XSTRING (mode)->data);
  3979.   /* if you want more control, eg setting the environment var UNIXMODE too, */
  3980.   /* or validating the argument, you can do this in lisp code */
  3981.   return Qt;
  3982. }
  3983. #endif /* __MINT__ */
  3984. void
  3985. init_system()
  3986. {
  3987. #ifndef __MINT__
  3988. _binmode(1);              /* binary mode is default in fopen calls */ 
  3989. #endif /* __MINT__ */
  3990. }
  3991.  
  3992. void
  3993. syms_of_system ()
  3994. {
  3995. #ifndef __MINT__
  3996.   defsubr (&Sst_set_unixmode);
  3997. #endif /* __MINT__ */
  3998. }
  3999. #endif /* atarist */
  4000.